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

9 lines
154 B
Plaintext
Vendored

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