c6a9c36275
#KT-16833 Fixed
15 lines
164 B
Kotlin
Vendored
15 lines
164 B
Kotlin
Vendored
// FLOW: OUT
|
|
|
|
open class A<caret>() {
|
|
constructor(n: Int) : this()
|
|
}
|
|
|
|
class B : A()
|
|
|
|
class C : A {
|
|
constructor() : super()
|
|
}
|
|
|
|
fun test() {
|
|
val x = A()
|
|
} |