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

19 lines
376 B
Kotlin
Vendored

//KT-2746 Do.smartcasts in inference
class C<T>(<!UNUSED_PARAMETER!>t<!> :T)
fun test1(a: Any) {
if (a is String) {
val <!UNUSED_VARIABLE!>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 <!UNUSED_VARIABLE!>c1<!>: C<String> = f(<!DEBUG_INFO_SMARTCAST!>a<!>)
}
}