Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/elvisNothingRHS.kt
T
Alexander Udalov 6698e0ecc9 Add test for outdated smart cast with elvis issue
#KT-5335 Obsolete
2014-10-16 16:38:11 +04:00

12 lines
170 B
Kotlin
Vendored

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