Files
kotlin-fork/compiler/testData/codegen/box/defaultArguments/constructor/defArgs1.kt
T
2018-06-09 19:15:38 +03:00

10 lines
148 B
Kotlin
Vendored

// IGNORE_BACKEND: JS_IR
class A(val a: Int = 0)
fun box(): String {
if (A().a == 0 && A(1).a == 1) {
return "OK"
}
return "fail"
}