Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/mustBeFinalJava10/beforeMultideclaration.java

8 lines
148 B
Java

// "Move 'x' into anonymous object" "false"
class Test {
void test() {
int x = 1, y = 2;
Runnable r = () -> <caret>x++;
}
}