Files
openide/java/java-tests/testData/refactoring/inlineLocal/InlineVariableIntoNestedLambda.java.after

5 lines
99 B
Plaintext

class Test {
{
Runnable r = () -> {Runnable rr = () -> System.out.println("hello");};
}
}