e31ea0c243
#KT-15944 Fixed
12 lines
266 B
Plaintext
Vendored
12 lines
266 B
Plaintext
Vendored
// "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)
|
|
} |