Files
openide/java/java-tests/testData/compiler/bytecodeReferences/testHierarchy/Bar.java
T
2016-10-10 20:27:20 +03:00

15 lines
116 B
Java

class Bar {
void m() {
Foo f = new Foo() {
};
}
void m2() {
Foo f2 = new Foo() {
};
}
}