877e11419e
First step for KT-52615
31 lines
326 B
Kotlin
Vendored
31 lines
326 B
Kotlin
Vendored
public object Objects {
|
|
|
|
val c = 0
|
|
|
|
fun f() {
|
|
}
|
|
|
|
fun g() = 1
|
|
|
|
private object InnerObject : A {
|
|
val c = 0
|
|
|
|
fun f() {
|
|
}
|
|
}
|
|
|
|
public object OtherObject : NestedClass() {
|
|
|
|
val c = 0
|
|
|
|
fun f() {
|
|
}
|
|
}
|
|
|
|
public open class NestedClass
|
|
|
|
|
|
}
|
|
|
|
interface A {
|
|
} |