mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-24 08:31:30 +00:00
13 lines
456 B
Plaintext
13 lines
456 B
Plaintext
package test
|
|
|
|
public trait ArrayOfStringInParam {
|
|
|
|
test.ArrayOfStringInParam.MyAnnotation(value = {"a", "b", "c"}: kotlin.Array<kotlin.String>) public open class A {
|
|
public constructor A()
|
|
}
|
|
|
|
public final annotation class MyAnnotation : kotlin.Annotation {
|
|
public constructor MyAnnotation(/*0*/ vararg value: kotlin.String /*kotlin.Array<kotlin.String>*/)
|
|
public abstract fun value(): kotlin.Array<kotlin.String>
|
|
}
|
|
} |