Files
kotlin-fork/idea/testData/intentions/convertSecondaryConstructorToPrimary/withComposedModifiers.kt
T
2016-09-30 16:39:24 +03:00

12 lines
227 B
Kotlin
Vendored

annotation class AnnParam
annotation class AnnProperty
abstract class WithComposedModifiers {
@AnnProperty
open val x: Array<out String>
constructor<caret>(@AnnParam vararg x: String) {
this.x = x
}
}