e6f4d6e6fa
^KT-65406
42 lines
550 B
Kotlin
Vendored
42 lines
550 B
Kotlin
Vendored
class Outer {
|
|
open inner class Inner {
|
|
constructor() /* primary */ {
|
|
super/*Any*/()
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
inner class InnerDerived0 : Inner {
|
|
constructor() /* primary */ {
|
|
<this>.super/*Inner*/()
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
inner class InnerDerived1 : Inner {
|
|
constructor() /* primary */ {
|
|
<this>.super/*Inner*/()
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
constructor() /* primary */ {
|
|
super/*Any*/()
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fun test(): Inner {
|
|
return Outer().Inner()
|
|
}
|
|
|
|
typealias OI = Inner
|