Files
kotlin-fork/idea/testData/quickfix/canBeParameter/usedVarArg.kt
T
2016-06-21 22:24:27 +03:00

6 lines
99 B
Kotlin
Vendored

// "Remove 'val' from parameter" "true"
class Wrapper(vararg <caret>val x: Int) {
val y = x
}