// WITH_RUNTIME interface C { operator fun get(p: String): MutableList } fun foo(c: C) { c.get("") += 10 }