mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
Using inner classes in objects makes little sense since objects have single static instance
10 lines
104 B
Kotlin
10 lines
104 B
Kotlin
package test
|
|
|
|
annotation class Anno
|
|
|
|
class Class {
|
|
class object {
|
|
Anno class Nested
|
|
}
|
|
}
|