12 lines
241 B
Kotlin
Vendored
12 lines
241 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
open class Base
|
|
|
|
class TestImplicitPrimaryConstructor : Base()
|
|
|
|
class TestExplicitPrimaryConstructor() : Base()
|
|
|
|
class TestWithDelegatingConstructor(val x: Int, val y: Int) : Base() {
|
|
constructor(x: Int) : this(x, 0)
|
|
}
|
|
|