8 lines
120 B
Plaintext
Vendored
8 lines
120 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
interface C {
|
|
operator fun get(p: String): MutableList<Int>
|
|
}
|
|
|
|
fun foo(c: C) {
|
|
c.get("") += 10
|
|
} |