Files
kotlin-fork/compiler/testData/codegen/box/inlineClasses/kt46554.kt
T

18 lines
207 B
Kotlin
Vendored

// WITH_RUNTIME
var result = "Fail"
@JvmInline
value class A(val value: String) {
constructor() : this("OK")
init {
result = value
}
}
fun box(): String {
A()
return result
}