mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
9 lines
173 B
Java
9 lines
173 B
Java
class Test {
|
|
public static final boolean myFoo = false;
|
|
|
|
public static void foo(int p) {
|
|
if (!myFoo) return;
|
|
System.out.println("p = " + p);
|
|
}
|
|
}
|