Files
openide/java/java-tests/testData/refactoring/introduceVariable/AnonymousClass2.java

13 lines
287 B
Java

public class TestClass {
void x() {
new Exception() {
int doSomething() { return 1; }
void a() {
<selection>doSomething()</selection>;
}
void b() {
doSomething();
}
};
}
}