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

26 lines
283 B
Kotlin
Vendored

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