8 lines
115 B
Kotlin
Vendored
8 lines
115 B
Kotlin
Vendored
fun foo(a: Int): Int {
|
|
val b = (<selection>a + 1</selection>) * 2
|
|
return a + b
|
|
}
|
|
|
|
fun test() {
|
|
foo(1)
|
|
} |