mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-19 13:18:46 +07:00
15 lines
116 B
Java
15 lines
116 B
Java
class Bar {
|
|
|
|
void m() {
|
|
Foo f = new Foo() {
|
|
|
|
};
|
|
}
|
|
|
|
void m2() {
|
|
Foo f2 = new Foo() {
|
|
|
|
};
|
|
}
|
|
|
|
} |