Files
kotlin-fork/compiler/testData/codegen/box/secondaryConstructors/withoutPrimarySimple.kt
T
2019-11-19 11:00:09 +03:00

11 lines
171 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
class A {
val value: String
get() = field + "K"
constructor(o: String) {
value = o
}
}
fun box() = A("O").value