e6f4d6e6fa
^KT-65406
27 lines
313 B
Kotlin
Vendored
27 lines
313 B
Kotlin
Vendored
class Outer {
|
|
inner class Inner {
|
|
val x: Int
|
|
field = x
|
|
get
|
|
|
|
constructor() {
|
|
<this>.this/*Inner*/(x = 0)
|
|
}
|
|
|
|
constructor(x: Int) /* primary */ {
|
|
super/*Any*/()
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
constructor() /* primary */ {
|
|
super/*Any*/()
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
}
|
|
|