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

// ELEMENT: length