mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 15:53:55 +00:00
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.
18 lines
511 B
Plaintext
Vendored
18 lines
511 B
Plaintext
Vendored
package test
|
|
|
|
kotlin.annotation.annotation() internal final annotation class A1 : kotlin.Annotation {
|
|
/*primary*/ public constructor A1()
|
|
}
|
|
|
|
kotlin.annotation.annotation() internal final annotation class A2 : kotlin.Annotation {
|
|
/*primary*/ public constructor A2()
|
|
}
|
|
|
|
kotlin.annotation.annotation() internal final annotation class A3 : kotlin.Annotation {
|
|
/*primary*/ public constructor A3()
|
|
}
|
|
|
|
test.A1() test.A2() test.A3() internal final class Class {
|
|
/*primary*/ public constructor Class()
|
|
}
|