Files
kotlin/compiler/testData/codegen/box/inlineClasses/inlineClassPropertyReferenceGetAndSet.kt
2019-06-13 12:25:06 +02: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
}