Files
2024-02-16 10:19:38 +00:00

26 lines
259 B
Kotlin
Vendored

object Z {
class A {
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
fun test2() {
Z.test()
}
}
private constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
fun test() {
}
}