Generate enum values with bodies properly (KT-15803)

This commit is contained in:
Yan Zhulanow
2017-01-30 18:48:55 +03:00
parent 18e0baa13e
commit 1b337e1a48
12 changed files with 284 additions and 50 deletions
+2 -2
View File
@@ -37,8 +37,8 @@ public final class Test {
}
public static enum NestedEnum {
/*public static final*/ BLACK /* = null */,
/*public static final*/ WHITE /* = null */;
/*public static final*/ BLACK /* = new BLACK() */,
/*public static final*/ WHITE /* = new WHITE() */;
NestedEnum() {
}