mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-28 15:20:54 +07:00
16 lines
150 B
Java
16 lines
150 B
Java
class Foo {
|
|
Foo() { this(() -> 4); }
|
|
|
|
Foo(I i) {}
|
|
}
|
|
|
|
enum SomeEnum {
|
|
FOO(() -> 5);
|
|
|
|
SomeEnum(I i) {
|
|
}
|
|
}
|
|
|
|
interface <caret>I {
|
|
int foo();
|
|
} |