Files
kotlin-fork/idea/testData/intentions/conventionNameCalls/replaceCallWithUnaryOperator/minusSanityTest.kt.after
T

9 lines
155 B
Plaintext
Vendored

// INTENTION_TEXT: Replace with '-' operator
fun test() {
class Test {
fun unaryMinus(): Test = Test()
}
val test = Test()
-test
}