Files
kotlin-fork/compiler/testData/codegen/box/secondaryConstructors/withoutPrimarySimple.kt
T

10 lines
141 B
Kotlin
Vendored

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