Rename unary plus() and minus() to unaryPlus() and unaryMinus()
This commit is contained in:
+2
-2
@@ -1,8 +1,8 @@
|
||||
// IS_APPLICABLE: false
|
||||
fun test() {
|
||||
class Test {
|
||||
fun plus(a: Int): Test = Test()
|
||||
fun unaryPlus(a: Int): Test = Test()
|
||||
}
|
||||
val test = Test()
|
||||
test.pl<caret>us(1)
|
||||
test.unaryPl<caret>us(1)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user