summaryrefslogtreecommitdiff
path: root/plugins/kotlin/completion/tests/testData/handlers/basic/UnstableSmartCast_typeParams.fir.kt.after
blob: 92001c8b7c87763ff3ad503a0fa9ddc51ec8cccd (plain)
1
2
3
4
5
6
7
8
9
// FIR_COMPARISON
fun test(p: Pair<Any, Any>) {
    if (p.first is List<*>) {
        (p.first as List<*>).size<caret>
    }
}

// ELEMENT: length