mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
11 lines
154 B
Plaintext
11 lines
154 B
Plaintext
import java.io;
|
|
|
|
class A {
|
|
public void test() {
|
|
Object i = new Object() {
|
|
public static final String s = "s";
|
|
};
|
|
}
|
|
}
|
|
|