Files
kotlin/compiler/testData/codegen/box/controlStructures/kt2147.kt
2019-12-11 16:54:15 +03:00

10 lines
133 B
Kotlin
Vendored

class Foo {
fun isOk() = true
}
fun box(): String {
val foo: Foo? = Foo()
if (foo?.isOk()!!) return "OK"
return "fail"
}