summaryrefslogtreecommitdiff
path: root/plugins/kotlin/completion/tests/testData/handlers/basic/UnstableSmartCast_typeAlias.kt
blob: c37f09147b018d780e83df20f2d074e241e85256 (plain)
1
2
3
4
5
6
7
8
9
10
11
// FIR_COMPARISON
typealias MyList<T> = List<T>

fun test(p: Pair<Any, Any>) {
    if (p.first is MyList<*>) {
        p.first.siz<caret>
    }
}

// ELEMENT: length