// FIX: Replace 'set' call with indexing operator class C { operator fun set(s: String, value: Int) {} } fun foo() { C().set("x", 1) }