blob: 553b4330f2222998a1e8ad3af04ea98db3745b2c [file] [log] [blame]
// "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();
}
};
}
}
}
}