Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/elvisRHS.kt
T
2015-10-14 20:39:35 +03:00

11 lines
193 B
Kotlin
Vendored

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