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