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

37 lines
438 B
Kotlin
Vendored

class Test1 {
companion object Companion {
private constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
}
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
}
class Test2 {
companion object Named {
private constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
}
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
}