7 lines
124 B
Kotlin
Vendored
7 lines
124 B
Kotlin
Vendored
fun foo(a: Int, s: String, b: Int): Int {
|
|
return (<selection>a + b</selection>) * 2
|
|
}
|
|
|
|
fun test() {
|
|
foo(1, "2", 3)
|
|
} |