Files
openide/java/java-tests/testData/refactoring/introduceParameter/beforeAnonymousClass.java
T
2009-09-10 21:30:46 +04:00

10 lines
138 B
Java

public class Test {
public Test() {
int i = <selection>0</selection>;
}
public Test get() {
return new Test() {
}
}
}