Files
openide/java/java-tests/testData/refactoring/introduceParameter/beforeCollapseToLambda.java
T

11 lines
150 B
Java

class Test {
void foo() {
<selection>new Runnable() {
public void run() {}
}</selection>.run();
}
void bar() {
foo();
}
}