Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/lambda2methodReference/beforeInsideNestedInner.java

18 lines
279 B
Java

// "Replace lambda with method reference" "true"
class Example {
class Bar {
void foo() {
}
class Foo {
void bar() {
new Object() {
void baz() {
Runnable runnable = () -> fo<caret>o();
}
};
}
}
}
}