Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/anonymous2lambda/beforeCallToInterfaceMethodOnAnotherField.java

9 lines
160 B
Java

// "Replace with lambda" "true"
class Test {
Runnable a = () -> {};
Runnable r = new R<caret>unnable() {
public void run() {
a.run();
}
};
}