Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/convert2Local/afterOtherFieldInitilizer.java

7 lines
111 B
Java

// "Convert to local" "true"
class Test {
private Runnable r = () -> {
String field = "foo";
}
}