11 lines
163 B
Kotlin
Vendored
11 lines
163 B
Kotlin
Vendored
// IGNORE_BACKEND_FIR: JVM_IR
|
|
class Foo {
|
|
fun isOk() = true
|
|
}
|
|
|
|
fun box(): String {
|
|
val foo: Foo? = Foo()
|
|
if (foo?.isOk()!!) return "OK"
|
|
return "fail"
|
|
}
|