mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 20:20:56 +07:00
14 lines
203 B
Java
14 lines
203 B
Java
// "Replace lambda with method reference" "true"
|
|
class NonStaticInner {
|
|
class Inner {
|
|
Inner() {}
|
|
}
|
|
|
|
interface I1 {
|
|
Inner m(NonStaticInner rec);
|
|
}
|
|
static {
|
|
I1 i1 = Inner::new;
|
|
}
|
|
}
|