Add quick fixes for mod/rem migration

- Remove 'operator' modifier
 - Rename operator 'mod/modAssign' to 'rem/remAssign'
This commit is contained in:
Mikhail Zarechenskiy
2016-12-08 17:22:15 +03:00
parent 7a0e44b8f9
commit 373c1be7e4
13 changed files with 183 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
// "Rename to 'rem'" "true"
object A
operator<caret> fun A.mod(x: Int) {}
fun test() {
A.mod(3)
A % 2
}