public class Test
{
  public static int foo = 42;
  public static int bar = 42;
  public static int g = 0;
  public static int bor = 0;
  
  public static void main(String... args) {
    for (;;) {
      test(args.length);
    }
  }
  
  public static void test(int d) {
    if (d == 42) {
      bar = 32;
      bor = d+17;
      if (g == 0) {
        bar=foo+99;
      }
    }
  }
}
c1_1-Test.test(I)V
c2_1-Test.test(I)V
opt-Test.test(I)V