summaryrefslogtreecommitdiff
path: root/plugins/kotlin/completion/tests/testData/handlers/basic/UnstableSmartCast_notDenotable.kt
blob: f2d0fe2c34ddfc92fe997e9d7ab841dc5d77669a (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.len<caret>
    }
}

// ELEMENT: length