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

12 lines
150 B
Kotlin
Vendored

// !WITH_NEW_INFERENCE
// ISSUE: KT-25432
class Data<T>(val s: T)
fun test(d: Data<out Any>) {
if (d.s is String) {
d.s.length
}
}