Deprecated enum syntax removed: most idea tests

This commit is contained in:
Mikhail Glukhikh
2015-08-07 17:07:23 +03:00
parent b2653ad1e9
commit 022e7d1169
42 changed files with 88 additions and 93 deletions
+4 -4
View File
@@ -1,9 +1,9 @@
enum class E1 { F S T }
enum class E1 { F, S, T }
enum class E2 { F S T}
enum class E2 { F, S, T}
enum class E3 {
F S T}
F, S, T}
class C1 {}
@@ -21,7 +21,7 @@ interface T2 {
val some = 1}
enum class E1 {
EE1 {}
EE1 {},
EE2 {
val some = 1}
}