Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/convert2Local/previewOtherFieldInitilizer.java
T
2022-08-09 11:36:04 +00:00

7 lines
119 B
Java

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