blob: d2cef58995b93296bed4122e6bfc173c73608c82 [file]
// IGNORE_BACKEND_FIR: JVM_IR
class A {
fun foo() = "OK"
}
fun A?.bar() = if (this != null) foo() else "FAIL"
fun box() = A().bar()