Files
kotlin/compiler/testData/codegen/boxInline/anonymousObject/safeCall_2.1.kt

12 lines
162 B
Kotlin
Vendored

import test.*
fun box(): String {
var result = "fail"
W("OK").safe {
{
result = this as String
}()
}
return result
}