Files
openide/java/java-tests/testData/codeInsight/javadocIG/enumConstant3.java
Andrey.Cherkasov cec415fdbe [javadoc] Missing enum constructor arguments in quick documentation and ctrl-hover popup
IDEA-218658

GitOrigin-RevId: f40a346285633828feea3a1b08513e50413aab61
2022-07-01 18:00:57 +00:00

17 lines
209 B
Java

enum E {
A(new Bar().foo(), 1);
E(String s, int num) {
this.s = s;
this.num = num;
}
private final String s;
private final int num;
}
class Bar {
String foo() {
return "hello";
}
}