8 lines
142 B
Kotlin
Vendored
8 lines
142 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
open class Base
|
|
|
|
class Test : Base {
|
|
constructor()
|
|
constructor(xx: Int): super()
|
|
constructor(xx: Short): this()
|
|
} |