8 lines
128 B
Kotlin
Vendored
8 lines
128 B
Kotlin
Vendored
fun a () {
|
|
val list = mutableListOf(1)
|
|
println(list<caret>[0])
|
|
}
|
|
|
|
// REF: (in kotlin.collections.List).get(kotlin.Int)
|
|
|