Files
kotlin-fork/compiler/testData/codegen/boxInline/property/kt22649.kt
T
2021-02-02 17:53:52 +03:00

18 lines
231 B
Kotlin
Vendored

// FILE: 1.kt
var result = ""
inline var apx:Int
get() = 0
set(value) { result = if (value == 1) "OK" else "fail" }
// FILE: 2.kt
fun test(s: Int?) {
apx = s!!
}
fun box() : String {
test(1)
return result
}