10 lines
136 B
Kotlin
Vendored
10 lines
136 B
Kotlin
Vendored
// "Create member function 'set'" "true"
|
|
class A {
|
|
fun get(s: String): Int = 1
|
|
}
|
|
|
|
fun foo() {
|
|
var a = A()
|
|
a<caret>["1"]++
|
|
}
|