e2d758463f
#KT-7881 Fixed
14 lines
152 B
Kotlin
Vendored
14 lines
152 B
Kotlin
Vendored
open class A (n: Int) {
|
|
constructor(): this(1)
|
|
}
|
|
|
|
class B: A {
|
|
constructor(n: Int): super(n)
|
|
}
|
|
|
|
class C(): A(1)
|
|
|
|
fun test() {
|
|
A()
|
|
A(1)
|
|
} |