Rename unary plus() and minus() to unaryPlus() and unaryMinus()

This commit is contained in:
Yan Zhulanow
2015-10-07 19:25:32 +03:00
parent 1f2b4e20fe
commit ed5c059cea
59 changed files with 210 additions and 88 deletions
@@ -2,10 +2,10 @@ fun doSomething<T>(a: T) {}
fun test() {
class Test {
fun plus(): Test = Test()
fun unaryPlus(): Test = Test()
fun plus(a: Test): Test = Test()
fun minus(): Test = Test()
fun unaryMinus(): Test = Test()
}
val test = Test()
doSomething((-((test + test).pl<caret>us())).toString())
doSomething((-((test + test).unaryPl<caret>us())).toString())
}