Files
kotlin-fork/compiler/testData/diagnostics/tests/controlFlowAnalysis/deadCode/deadCallInReceiver.fir.kt
T
2021-04-09 12:32:45 +03:00

12 lines
195 B
Kotlin
Vendored

fun test11() {
fun Any.bar(i: Int) {}
todo().bar(1)
}
fun test12() {
fun Any.bar(i: Int) {}
todo()<!UNNECESSARY_SAFE_CALL!>?.<!>bar(1)
}
fun todo(): Nothing = throw Exception()