Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/convert2Local/previewOtherFieldInitilizer.java
Bart van Helvert ed388efc1a [java-inspections] IDEA-298787 Add preview to 'ConvertFieldToLocalQuickFix'
GitOrigin-RevId: b8b06b05c9c3fbb8111f3caded9a6a2f5d3e911f
2022-07-29 14:24:14 +00:00

7 lines
108 B
Java

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