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