10 lines
132 B
Plaintext
Vendored
10 lines
132 B
Plaintext
Vendored
interface C {
|
|
operator fun set(p: String, value: Int)
|
|
}
|
|
|
|
class D(val c: C) {
|
|
fun foo() {
|
|
this.c.set("", 10)
|
|
}
|
|
}
|