mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +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.
14 lines
401 B
Plaintext
Vendored
14 lines
401 B
Plaintext
Vendored
package test
|
|
|
|
internal final class Some {
|
|
/*primary*/ public constructor Some()
|
|
|
|
test.Some.Companion.TestAnnotation() public companion object Companion {
|
|
/*primary*/ private constructor Companion()
|
|
|
|
kotlin.annotation.annotation() internal final annotation class TestAnnotation : kotlin.Annotation {
|
|
/*primary*/ public constructor TestAnnotation()
|
|
}
|
|
}
|
|
}
|