a1e86e8bfa
(cherry picked from commit a51d3fc)
10 lines
147 B
Kotlin
Vendored
10 lines
147 B
Kotlin
Vendored
// "Create member function 'A.set'" "true"
|
|
class A {
|
|
operator fun get(s: String): Int = 1
|
|
}
|
|
|
|
fun foo() {
|
|
var a = A()
|
|
a<caret>["1"]++
|
|
}
|