mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
java completion: show initializers for non-imported fields (IDEA-226639)
GitOrigin-RevId: c1aff6352023ed3a953ab8e32e1d1a34d8fcd8ae
This commit is contained in:
committed by
intellij-monorepo-bot
parent
ee0505a5dc
commit
680f4703db
+22
@@ -0,0 +1,22 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user