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

10 lines
136 B
Kotlin
Vendored

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