Files
kotlin-fork/idea/testData/completion/smart/InElvisOperator2.kt
T
2014-11-17 22:06:16 +03:00

13 lines
243 B
Kotlin

fun foo1(): String? = null
fun foo2(): String? = null
fun foo3(): String = ""
fun bar() {
foo1() ?: <caret>
}
// EXIST: { itemText:"foo3" }
// ABSENT: { itemText:"foo2" }
// EXIST: { itemText:"!! foo2" }
// EXIST: { itemText:"?: foo2" }