Files
openide/java/java-tests/testData/refactoring/inlineMethod/Scr10884.java.after
Dmitry Jemerov b43c03ca2f moving tests
2009-09-10 19:49:38 +04:00

13 lines
172 B
Plaintext

public class Scr10884 {
Y bar() {
return new Y(1) {
};
}
}
class Y {
Y(int x) {}
int foo() {
return 2;
}
}