Files
openide/java/java-tests/testData/refactoring/extractMethodObject4Debugger/AnonymousClassParams.java

8 lines
118 B
Java

interface I {
void foo(int i) {}
}
class Sample {
void foo() {
System.out.println("hello <caret>world");
}
}