b454fcc1e0
This is needed to avoid clashes between different dumps from different handlers
29 lines
314 B
Kotlin
Vendored
29 lines
314 B
Kotlin
Vendored
abstract class Base {
|
|
constructor() /* primary */ {
|
|
super/*Any*/()
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
object Test : Base {
|
|
private constructor() /* primary */ {
|
|
super/*Base*/()
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
val x: Int
|
|
field = 1
|
|
get
|
|
|
|
val y: Int
|
|
get
|
|
|
|
init {
|
|
<this>.#y = <this>.<get-x>()
|
|
}
|
|
|
|
}
|