Files
openide/java/java-tests/testData/refactoring/extractMethod/ConflictingAnonymous.java

10 lines
158 B
Java

public class Test {
void foo() {
new A() {
void fe() {<selection>System.out.println("");</selection>}
}
}
}
class A {
void newMethod(){}
}