Files
kotlin/compiler/testData/codegen/box/inlineClasses/inlineClassPropertyReferenceGetAndSet.kt
2020-03-24 18:58:19 +03:00

11 lines
170 B
Kotlin
Vendored

// !LANGUAGE: +InlineClasses
// WITH_RUNTIME
inline class Foo(val z: String)
var f = Foo("zzz")
fun box(): String {
(::f).set(Foo("OK"))
return (::f).get().z
}