b454fcc1e0
This is needed to avoid clashes between different dumps from different handlers
54 lines
554 B
Kotlin
Vendored
54 lines
554 B
Kotlin
Vendored
class Test1 {
|
|
constructor(x: Int, y: Int) /* primary */ {
|
|
super/*Any*/()
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
val x: Int
|
|
field = x
|
|
get
|
|
|
|
val y: Int
|
|
field = y
|
|
get
|
|
|
|
}
|
|
|
|
class Test2 {
|
|
constructor(x: Int, y: Int) /* primary */ {
|
|
super/*Any*/()
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
val y: Int
|
|
field = y
|
|
get
|
|
|
|
val x: Int
|
|
field = x
|
|
get
|
|
|
|
}
|
|
|
|
class Test3 {
|
|
constructor(x: Int, y: Int) /* primary */ {
|
|
super/*Any*/()
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
val y: Int
|
|
field = y
|
|
get
|
|
|
|
val x: Int
|
|
get
|
|
|
|
init {
|
|
<this>.#x = x
|
|
}
|
|
|
|
}
|