Files
kotlin-fork/idea/testData/codegen/classes/secondaryConstructors.jet
T

9 lines
157 B
Plaintext

class C(val n: Int, val s: String) {
this(n: Int): this(n, "foo") { }
}
fun box(): String {
val c = C(10)
return if (c.s == "foo") "OK" else "fail"
}