mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
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"]++
|
|
}
|