// "Replace usages of 'set(Int, Int): Unit' in whole project" "true" interface T { @Deprecated("", replaceWith = ReplaceWith("set2(i, v)")) operator fun set(i: Int, v: Int) fun set2(i: Int, v: Int) } fun test(t: T) { t.set2(0, 1) t.set2(1, 2) }