Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/kt32358_3.fir.kt
T

10 lines
196 B
Kotlin
Vendored

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