1eac4d67de
Sometimes it's allowed to parse "annotation" unescaped even if other annotations must be escaped. A set of annotations and their options tests. A swarm of existing tests fixed (mostly kotlin.annotation.annotation() added to txt-files). STUB_VERSION increased. Some quick fixes slightly changed.
24 lines
971 B
Plaintext
Vendored
24 lines
971 B
Plaintext
Vendored
package test
|
|
|
|
kotlin.annotation.annotation() internal final annotation class AnnotationArray : kotlin.Annotation {
|
|
public constructor AnnotationArray(/*0*/ annotationArray: kotlin.Array<test.JustAnnotation>)
|
|
internal final val annotationArray: kotlin.Array<test.JustAnnotation>
|
|
}
|
|
|
|
test.JustAnnotation(annotation = test.Empty()) test.AnnotationArray(annotationArray = {}) internal final class C1 {
|
|
public constructor C1()
|
|
}
|
|
|
|
test.AnnotationArray(annotationArray = {test.JustAnnotation(annotation = test.Empty()), test.JustAnnotation(annotation = test.Empty())}) internal final class C2 {
|
|
public constructor C2()
|
|
}
|
|
|
|
kotlin.annotation.annotation() internal final annotation class Empty : kotlin.Annotation {
|
|
public constructor Empty()
|
|
}
|
|
|
|
kotlin.annotation.annotation() internal final annotation class JustAnnotation : kotlin.Annotation {
|
|
public constructor JustAnnotation(/*0*/ annotation: test.Empty)
|
|
internal final val annotation: test.Empty
|
|
}
|