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

11 lines
166 B
Kotlin
Vendored

// !DIAGNOSTICS: -UNUSED_VARIABLE
// KT-5335
fun foo(p1: String?, p2: String?) {
if (p2 != null) {
val v = p1 ?: p2
val size = v.length
}
}