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

8 lines
117 B
Plaintext

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