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

11 lines
242 B
Kotlin
Vendored

// !LANGUAGE: +NewInference
// !DIAGNOSTICS: -UNUSED_PARAMETER
// no inline modifier
fun <R> callIt(fn: () -> R): R = TODO()
fun smartIt(p1: String?, p2: String?) {
p1 ?: callIt { TODO() }
p1<!UNSAFE_CALL!>.<!>length // smartcast
}