mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
10 lines
154 B
Plaintext
10 lines
154 B
Plaintext
import static I.FOO;
|
|
public class X {
|
|
public static void main(String[] args) {
|
|
System.out.println(FOO);
|
|
}
|
|
}
|
|
interface I {
|
|
String FOO = "foo";
|
|
}
|