summaryrefslogtreecommitdiff
path: root/Chalice/tests/regressions/workitem-9978.chalice
blob: 02cd2e66e17da1325aba48cf72883b6ca6229217 (plain)
1
2
3
4
5
6
7
8
9
class C {
  method nullPointerException()
  {
    while (true)
    {
      fork nullPointerException(); // previously, fork without token inside a while loop introduced a nullpointer exception.
    }
  }
}