mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
19 lines
326 B
Java
19 lines
326 B
Java
class Test {
|
|
public static String bar(int x , int y) {
|
|
while (true) {
|
|
newMethod(x, y);
|
|
}
|
|
}
|
|
|
|
private static void newMethod(int x, int y) {
|
|
if (x == y) {
|
|
return;
|
|
}
|
|
System.out.println("HW");
|
|
}
|
|
|
|
private static int g() {
|
|
return 0;
|
|
}
|
|
}
|