Files
kotlin-fork/compiler/testData/codegen/boxInline/smap/inlineProperty.kt
T
Ivan Kylchik bb401c39d9 Add several new SMAP tests
Some of them are still failing and suppose to be
fixed later
2023-03-14 20:47:39 +00:00

14 lines
159 B
Kotlin
Vendored

// FILE: 1.kt
class A {
inline val s: Int
get() = 1
}
// FILE: 2.kt
fun box(): String {
val a = A()
var y = a.s
y++
return "OK"
}