Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/elvisNothingRHS.fir.kt
T
2021-01-29 16:55:26 +03:00

12 lines
143 B
Kotlin
Vendored

class C {
fun foo() {}
}
fun test(a: C?, nn: () -> Nothing?) {
a ?: nn()
a<!UNSAFE_CALL!>.<!>foo()
a ?: return
a.foo()
}