summaryrefslogtreecommitdiff
path: root/plugins/kotlin/completion/tests/testData/handlers/basic/UnstableSmartCast_notDenotable.fir.kt.after
blob: c828ebd9f052f0915b7127dd2ccf87d5faee0d1a (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 as CharSequence).length<caret>
    }
}

// ELEMENT: length