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

8 lines
99 B
Java

class Test {
void foo() {
<selection>class X {}
X x;
</selection>
x = null;
}
}