f846dd8ea2
Fixes KT-46952
9 lines
122 B
Kotlin
Vendored
9 lines
122 B
Kotlin
Vendored
inline class C(val s: String)
|
|
|
|
fun f(g: () -> C): C = g()
|
|
|
|
val C.foo: C
|
|
get() = f { this }
|
|
|
|
fun box() = C("OK").foo.s
|