Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createLocalFromUsage/beforeInsideLambdaField.java
Tagir Valeev 6266f14d9b [java-inspections] CreateLocalFromUsageFix: tests for preview
GitOrigin-RevId: 18145df666bfb6601725d6cdd13a14bb341fe32a
2022-07-27 10:00:37 +00:00

4 lines
98 B
Java

// "Create local variable 'x'" "true-preview"
class other {
Runnable field = () -> {<caret>x};
}