mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 00:21:32 +00:00
10 lines
145 B
Kotlin
Vendored
10 lines
145 B
Kotlin
Vendored
// "Create member function 'set'" "true"
|
|
class A {
|
|
operator fun get(s: String): Int = 1
|
|
}
|
|
|
|
fun foo() {
|
|
var a = A()
|
|
a<caret>["1"]++
|
|
}
|