mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 23:20:57 +07:00
15 lines
230 B
Java
15 lines
230 B
Java
// "Replace lambda with method reference" "false"
|
|
class NonStaticInner3 {
|
|
class Foo {
|
|
public Foo() {
|
|
}
|
|
}
|
|
|
|
interface I1<X> {
|
|
X m();
|
|
}
|
|
|
|
{
|
|
I1<Foo> b2 = () -> <caret>new Foo(){};
|
|
}
|
|
} |