mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-11 12:20:54 +07:00
680f4703db
GitOrigin-RevId: c1aff6352023ed3a953ab8e32e1d1a34d8fcd8ae
22 lines
288 B
Java
22 lines
288 B
Java
import static E.FIELD3;
|
|
|
|
class X {
|
|
{
|
|
FIELD<caret>
|
|
}
|
|
}
|
|
|
|
enum E {
|
|
FIELD1( "x"),
|
|
FIELD2("y") {
|
|
public String toString() {
|
|
return super.toString();
|
|
}
|
|
},
|
|
FIELD3 {};
|
|
|
|
E(String s) {
|
|
}
|
|
|
|
public static final int FIELD4 = 42;
|
|
} |