Files
kotlin/compiler/testData/codegen/classes/secondaryConstructors.jet
2011-10-20 16:21:18 +02:00

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"
}