e8d2ba197e
#KT-4639 Fixed
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) |