mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 08:31:31 +00:00
11 lines
157 B
Plaintext
Vendored
11 lines
157 B
Plaintext
Vendored
fun foo() {
|
|
val a: String
|
|
val b: String
|
|
<selection>run</selection> {
|
|
a = "aaa"
|
|
b = "aaa"
|
|
}
|
|
|
|
a.charAt(1)
|
|
b.charAt(1)
|
|
} |