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

// ELEMENT: length