Files
kotlin-fork/compiler/testData/codegen/boxInline/anonymousObject/kt9591.1.kt
T
Michael Bogdanov bf16783fb7 Fix for KT-9591: Exception on inlining
#KT-9591 Fixed
2016-01-21 18:44:05 +03:00

16 lines
235 B
Kotlin
Vendored

import test.*
public fun box(): String {
var z = "fail"
inlineFun {
val obj = object {
val _delegate by lazy {
z = "OK"
}
}
obj._delegate
}
return z;
}