class Test { public static void test(int b) { do { if (b == 1) break; System.out.println(); } while (false); } }