Files
kotlin-fork/idea/testData/resolve/partialBodyResolve/InIfExpressionElse.dump
T
2014-11-24 20:11:27 +03:00

9 lines
190 B
Plaintext
Vendored

Resolve target: null
----------------------------------------------
fun foo(s: String){}
fun foo(c: Char){}
fun bar(b: Boolean, s: String, c: Char){
foo(if (b) "abc" else <caret>xxx)
}