Files
kotlin-fork/backend.native/tests/external/codegen/box/controlStructures/kt2147.kt
T
2017-03-13 15:31:46 +03: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"
}