Files
kotlin/compiler/testData/codegen/box/defaultArguments/constructor/enumWithOneDefArg.kt
2015-08-10 16:24:12 +03:00

11 lines
220 B
Kotlin
Vendored

enum class Foo(val a: Int = 1, val b: String) {
B(2, "b"),
C(b = "b")
}
fun box(): String {
if (Foo.B.a != 2 || Foo.B.b != "b") return "fail"
if (Foo.C.a != 1 || Foo.C.b != "b") return "fail"
return "OK"
}