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