Files
openide/java/java-tests/testData/refactoring/introduceParameter/beforeAnonymousClass.java
Dmitry Jemerov a5f846b4d4 test++
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() {
}
}
}