29 lines
307 B
Kotlin
29 lines
307 B
Kotlin
public object Objects {
|
|
|
|
val c = 0
|
|
|
|
fun f() {
|
|
}
|
|
|
|
private object InnerObject : A {
|
|
val c = 0
|
|
|
|
fun f() {
|
|
}
|
|
}
|
|
|
|
public object OtherObject : NestedClass() {
|
|
|
|
val c = 0
|
|
|
|
fun f() {
|
|
}
|
|
}
|
|
|
|
internal open class NestedClass
|
|
|
|
|
|
}
|
|
|
|
trait A {
|
|
} |