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

// ELEMENT: length