mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
13 lines
184 B
Java
13 lines
184 B
Java
public class A {
|
|
void test(String <caret>s) {
|
|
System.out.println(s);
|
|
}
|
|
|
|
void callTest() {
|
|
test(B.f);
|
|
}
|
|
}
|
|
|
|
class B {
|
|
public static String f = null;
|
|
} |