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

13 lines
177 B
Plaintext

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