Files
kotlin-fork/idea/testData/quickfix/makeConstructorParameterProperty/vararg.kt
T
Mikhail Glukhikh 9e2ee6183c Fix "make constructor parameter a property" for vararg case
Same should work for annotated parameters
#KT-29312 Fixed
2019-03-04 17:57:52 +03:00

7 lines
166 B
Kotlin
Vendored

// "Make constructor parameter a property" "true"
class SomeClass(vararg dismissibleViewTypes: Int) {
fun someFun() {
<caret>dismissibleViewTypes
}
}