Files
openide/java/java-tests/testData/refactoring/extractMethod/FromLambdaBodyToToplevelInsideCodeBlock.java

9 lines
170 B
Java

class Test {
void foo(Object o) {
try {
Runnable r = () -> {
<selection>System.out.println(o);</selection>
};
} catch (Throwable e) {}
}
}