Files
kotlin-fork/idea/testData/completion/handlers/smart/IfValueInBlock.kt
T
2014-05-07 22:50:22 +04:00

13 lines
176 B
Kotlin

fun foo(s: String, i: Int){}
fun bar(b: Boolean, s: String){
foo(if (b)
"abc"
else {
println()
<caret>
})
}
// ELEMENT: s