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

18 lines
274 B
Java

// "Replace lambda with method reference" "true"
class Example {
class Bar {
void foo() {
}
class Foo {
void bar() {
new Object() {
void baz() {
Runnable runnable = Bar.this::foo;
}
};
}
}
}
}