aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled/macro/run/idempotency-labels.check
blob: 8709efeb43e27152583c70b83fe9208ee3881822 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2
{
  var x: Int = 0;
  while$1(){
    if (x.<(2))
      {
        x = x.+(1);
        while$1()
      }
    else
      ()
  };
  x
}
2