b454fcc1e0
This is needed to avoid clashes between different dumps from different handlers
25 lines
258 B
Plaintext
Vendored
25 lines
258 B
Plaintext
Vendored
object Z {
|
|
private constructor() /* primary */ {
|
|
super/*Any*/()
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
fun test() {
|
|
}
|
|
|
|
class A {
|
|
constructor() /* primary */ {
|
|
super/*Any*/()
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
fun test2() {
|
|
Z.test()
|
|
}
|
|
|
|
}
|
|
|
|
}
|