mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 05:20:30 +07:00
GitOrigin-RevId: c178b9a0147a64da6e081360967a95c64f52f72f
17 lines
183 B
Java
17 lines
183 B
Java
interface X {
|
|
|
|
}
|
|
enum E implements X {
|
|
A
|
|
}
|
|
enum F implements X {
|
|
A {}
|
|
}
|
|
class Y implements X {
|
|
void x<caret>() {}
|
|
}
|
|
record Z() implements X {
|
|
void f() {
|
|
new X() {};
|
|
}
|
|
} |