Files
Egor Kulikov 877e11419e Stub updates for RawFirBuilder
First step for KT-52615
2022-11-18 11:40:09 +01:00

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