Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createConstructorFromCall/afterIncompleteEnum1.java
Rustam Vishnyakov e9d34426d0 Test data fix
2018-06-06 15:44:16 +03:00

9 lines
153 B
Java

// "Create constructor" "true"
public enum ReportType {
AGING("Aging"),
;
ReportType(String aging) {
<selection></selection>
}
}