extern int a, b, c;

void test()
{
  c = a < 10;
  lab:
  if ( c )
  {
    a ++;
    b += a;
    c = a < 10;
    goto lab;
  }
}

