Files
kotlin-fork/idea/testData/decompiler/stubBuilder/Objects/Objects.kt
T
2014-12-21 14:23:26 +03:00

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 {
}