8528c23194
TODO: extract nested initializers somehow.
7 lines
125 B
Kotlin
Vendored
7 lines
125 B
Kotlin
Vendored
open class Base
|
|
|
|
class Test : Base {
|
|
constructor()
|
|
constructor(xx: Int): super()
|
|
constructor(xx: Short): this()
|
|
} |