mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-23 08:31:33 +00:00
48 lines
2.0 KiB
Plaintext
Vendored
48 lines
2.0 KiB
Plaintext
Vendored
package test
|
|
|
|
public interface AnnotationInParam {
|
|
|
|
@test.AnnotationInParam.MyAnnotationWithParam(value = test.AnnotationInParam.MyAnnotation(value = "test")) public open class A {
|
|
public constructor A()
|
|
}
|
|
|
|
@test.AnnotationInParam.MyAnnotationWithParam2(value = test.AnnotationInParam.MyAnnotation2(value = {"test", "test2"})) public open class B {
|
|
public constructor B()
|
|
}
|
|
|
|
@test.AnnotationInParam.MyAnnotationWithParam3(value = test.AnnotationInParam.MyAnnotation3(first = "f", second = "s")) public open class C {
|
|
public constructor C()
|
|
}
|
|
|
|
public final annotation class MyAnnotation : kotlin.Annotation {
|
|
public constructor MyAnnotation(/*0*/ value: kotlin.String)
|
|
public final val value: kotlin.String
|
|
}
|
|
|
|
public final annotation class MyAnnotation2 : kotlin.Annotation {
|
|
public constructor MyAnnotation2(/*0*/ vararg value: kotlin.String /*kotlin.Array<out kotlin.String>*/)
|
|
public final val value: kotlin.Array<kotlin.String>
|
|
}
|
|
|
|
public final annotation class MyAnnotation3 : kotlin.Annotation {
|
|
public constructor MyAnnotation3(/*0*/ first: kotlin.String, /*1*/ second: kotlin.String)
|
|
public final val first: kotlin.String
|
|
public final val second: kotlin.String
|
|
}
|
|
|
|
public final annotation class MyAnnotationWithParam : kotlin.Annotation {
|
|
public constructor MyAnnotationWithParam(/*0*/ value: test.AnnotationInParam.MyAnnotation)
|
|
public final val value: test.AnnotationInParam.MyAnnotation
|
|
}
|
|
|
|
public final annotation class MyAnnotationWithParam2 : kotlin.Annotation {
|
|
public constructor MyAnnotationWithParam2(/*0*/ value: test.AnnotationInParam.MyAnnotation2)
|
|
public final val value: test.AnnotationInParam.MyAnnotation2
|
|
}
|
|
|
|
public final annotation class MyAnnotationWithParam3 : kotlin.Annotation {
|
|
public constructor MyAnnotationWithParam3(/*0*/ value: test.AnnotationInParam.MyAnnotation3)
|
|
public final val value: test.AnnotationInParam.MyAnnotation3
|
|
}
|
|
}
|