Files
kotlin-fork/idea/testData/completion/handlers/smart/IfValue1.kt
T
Valentin Kipyatkov 33de0e8393 Smart completion for then and else branches of if
#KT-4910 Fixed
2014-05-07 22:50:20 +04:00

9 lines
122 B
Kotlin

fun foo(s: String, i: Int){}
fun foo(c: Char){}
fun bar(b: Boolean, s: String){
foo(if (b) <caret>)
}
// ELEMENT: s