66310806ca
#KT-9628 Fixed
10 lines
180 B
Kotlin
Vendored
10 lines
180 B
Kotlin
Vendored
fun test() {
|
|
class Test{
|
|
operator fun get(a: Int, b: Int, fn: (i: Int) -> Int) : Int = 0
|
|
}
|
|
val test = Test()
|
|
test.g<caret>et(1, 2) { i ->
|
|
i
|
|
}
|
|
}
|