Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/convert2Local/afterOtherFieldInitilizer.java
T
2023-07-07 15:58:22 +00:00

7 lines
119 B
Java

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