Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/inference/kt25432.kt
T
2019-08-01 14:37:54 +03:00

12 lines
177 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) {
<!DEBUG_INFO_SMARTCAST!>d.s<!>.length
}
}