Additional tests on mod/rem migration

This commit is contained in:
Mikhail Zarechenskiy
2016-12-09 16:42:27 +03:00
parent 040f4e90ce
commit 8e73a902e4
17 changed files with 289 additions and 22 deletions
@@ -0,0 +1,29 @@
// !DIAGNOSTICS: -UNUSED_PARAMETER
object B
class A {
operator fun B.rem(x: Int) = 0
}
fun test1() {
<!DEPRECATED_BINARY_MOD!>operator<!> fun B.mod(x: Int) = ""
with(A()) {
takeInt(B % 10)
}
}
class C {
<!DEPRECATED_BINARY_MOD!>operator<!> fun B.mod(x: Int) = ""
}
fun test2() {
operator fun B.rem(x: Int) = 0
with(C()) {
takeInt(B % 10)
}
}
fun takeInt(x: Int) {}