8 lines
113 B
Kotlin
Vendored
8 lines
113 B
Kotlin
Vendored
var a = 1
|
|
val b = <selection>a</selection> + 1
|
|
|
|
fun foo() {
|
|
println(a - 1)
|
|
val a = 2
|
|
println(a - 1)
|
|
} |