mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-23 08:31:33 +00:00
14 lines
446 B
Plaintext
14 lines
446 B
Plaintext
package test
|
|
|
|
public trait EmptyArrayInParam {
|
|
|
|
test.EmptyArrayInParam.MyAnnotation(value = {}: kotlin.Array<out 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<out kotlin.String>*/)
|
|
public abstract fun value(): kotlin.Array<kotlin.String>
|
|
}
|
|
}
|