mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
Using inner classes in objects makes little sense since objects have single static instance
18 lines
398 B
Plaintext
18 lines
398 B
Plaintext
package test
|
|
|
|
internal final annotation class Anno : kotlin.Annotation {
|
|
/*primary*/ public constructor Anno()
|
|
}
|
|
|
|
internal final class Class {
|
|
/*primary*/ public constructor Class()
|
|
|
|
internal class object Default {
|
|
/*primary*/ private constructor Default()
|
|
|
|
test.Anno() internal final class Nested {
|
|
/*primary*/ public constructor Nested()
|
|
}
|
|
}
|
|
}
|