Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/inference/kt25432.kt
T
2019-02-17 13:03:01 +03:00

12 lines
210 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) {
<!OI;DEBUG_INFO_SMARTCAST!>d.s<!>.<!NI;UNRESOLVED_REFERENCE!>length<!>
}
}