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

8 lines
117 B
Plaintext
Vendored

fun test() {
class Test {
fun unaryPlus(a: Int=1): Test = Test()
}
val test = Test()
+test
}