mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-23 15:51:59 +00:00
14 lines
413 B
Plaintext
Vendored
14 lines
413 B
Plaintext
Vendored
package test
|
|
|
|
public interface EmptyArrayInParam {
|
|
|
|
@test.EmptyArrayInParam.MyAnnotation(value = {}) 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 final val value: kotlin.Array<kotlin.String>
|
|
}
|
|
}
|