Deprecated enum syntax removed: JS plugin tests

This commit is contained in:
Mikhail Glukhikh
2015-08-07 16:00:04 +03:00
parent b87bbfc3e0
commit 90f94b47db
35 changed files with 56 additions and 56 deletions
@@ -1,10 +1,10 @@
package foo
enum class Foo(val a: Int = 1, val b: String = "a") {
A: Foo()
B: Foo(2, "b")
C: Foo(b = "b")
D: Foo(a = 2)
A(),
B(2, "b"),
C(b = "b"),
D(a = 2)
}
fun box(): String {