Files
kotlin-fork/compiler/testData/codegen/regressions/kt2147.kt
T
2012-05-31 13:59:42 +02:00

10 lines
133 B
Kotlin

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