mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 15:53:49 +00:00
11 lines
218 B
Kotlin
Vendored
11 lines
218 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
// PARAM_TYPES: kotlin.Int
|
|
// PARAM_DESCRIPTOR: var k: kotlin.Int defined in foo
|
|
// SIBLING:
|
|
fun foo() {
|
|
var k = 0
|
|
<selection>val a = 1
|
|
k++
|
|
val b = 2</selection>
|
|
println(a + b - k)
|
|
} |