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

9 lines
155 B
Kotlin

// IS_APPLICABLE: false
fun test() {
class Test {
fun plus(vararg a: Int): Test = Test()
}
val test = Test()
test.pl<caret>us(0)
}