8 lines
136 B
Kotlin
Vendored
8 lines
136 B
Kotlin
Vendored
fun test() {
|
|
class Test{
|
|
operator fun get(a: Int, b: Int) : Int = 0
|
|
}
|
|
val test = Test()
|
|
test.g<caret>et(1, 2)
|
|
}
|