725df49c8c
(cherry picked from commit f3fa779)
12 lines
227 B
Kotlin
Vendored
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
|
|
}
|
|
} |