Files
kotlin-fork/idea/testData/decompiler/stubBuilder/Objects/Objects.kt
T
2015-05-13 16:13:13 +02:00

29 lines
311 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
}
interface A {
}