Files
kotlin-fork/idea/testData/intentions/conventionNameCalls/replaceCallWithUnaryOperator/defaultArgument.kt.after
T
2015-05-14 01:10:05 +03:00

8 lines
112 B
Plaintext

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