mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
14 lines
297 B
Plaintext
14 lines
297 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 class object Default {
|
|
/*primary*/ private constructor Default()
|
|
}
|
|
}
|