class Test { public static String bar(int x , int y) { while (true) { if (x == y) { continue; } System.out.println("HW"); } } private static int g() { return 0; } }