mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
14 lines
305 B
Plaintext
14 lines
305 B
Plaintext
package test
|
|
|
|
internal final annotation class Anno : kotlin.Annotation {
|
|
/*primary*/ public constructor Anno()
|
|
}
|
|
|
|
internal final class Class {
|
|
/*primary*/ public constructor Class()
|
|
|
|
test.Anno() internal companion object Companion {
|
|
/*primary*/ private constructor Companion()
|
|
}
|
|
}
|