mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 10:51:06 +07:00
10 lines
178 B
Plaintext
10 lines
178 B
Plaintext
class Foo {
|
|
void test() {
|
|
new Object() {
|
|
void foo(String s) {
|
|
System.out.println(s);
|
|
}
|
|
};
|
|
System.out.println("hello");
|
|
}
|
|
} |