9 lines
123 B
Kotlin
Vendored
9 lines
123 B
Kotlin
Vendored
fun test() {
|
|
class Test()
|
|
|
|
operator fun Test.get(i: Int) : Int = 0
|
|
|
|
val test = Test()
|
|
test.g<caret>et(0)
|
|
}
|