37 lines
518 B
Plaintext
Vendored
37 lines
518 B
Plaintext
Vendored
class Test1 {
|
|
constructor() /* primary */ {
|
|
super/*Any*/()
|
|
/* InstanceInitializerCall */
|
|
|
|
}
|
|
|
|
companion object Companion {
|
|
private constructor() /* primary */ {
|
|
super/*Any*/()
|
|
/* InstanceInitializerCall */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
class Test2 {
|
|
constructor() /* primary */ {
|
|
super/*Any*/()
|
|
/* InstanceInitializerCall */
|
|
|
|
}
|
|
|
|
companion object Named {
|
|
private constructor() /* primary */ {
|
|
super/*Any*/()
|
|
/* InstanceInitializerCall */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|