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

19 lines
309 B
Kotlin
Vendored

//KT-2746 Do.smartcasts in inference
class C<T>(t :T)
fun test1(a: Any) {
if (a is String) {
val c: C<String> = C(<!DEBUG_INFO_SMARTCAST!>a<!>)
}
}
fun <T> f(t :T): C<T> = C(t)
fun test2(a: Any) {
if (a is String) {
val c1: C<String> = f(<!DEBUG_INFO_SMARTCAST!>a<!>)
}
}