mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
10 lines
102 B
Kotlin
10 lines
102 B
Kotlin
fun foo() {
|
|
val a = A()
|
|
<caret>a[1]
|
|
}
|
|
|
|
class A {
|
|
fun get(i: Int) = 1
|
|
}
|
|
|
|
// EXISTS: get(int) |