7 lines
122 B
Kotlin
Vendored
7 lines
122 B
Kotlin
Vendored
fun foo(s: String){}
|
|
fun foo(c: Char){}
|
|
|
|
fun bar(b: Boolean, s: String, c: Char){
|
|
foo(if (b) "abc" else <caret>xxx)
|
|
}
|