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
+1 -1
View File
@@ -1,4 +1,4 @@
enum class Test {
First
First,
Second
}
+1 -1
View File
@@ -2,6 +2,6 @@ annotation class a
annotation class b(val e: E)
enum class E { E1 E2 }
enum class E { E1, E2 }
fun types(param: @[a] @[b(E.E1)] DoubleRange): @[a] @[b(E.E2)] Unit {}