5fb79259f7
(cherry picked from commit 45d82f1)
14 lines
210 B
Kotlin
Vendored
14 lines
210 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
|
|
open class Bar(val a: Int = 0)
|
|
|
|
class Foo : Bar {
|
|
<caret>lateinit var bar: String
|
|
|
|
constructor() : super() {
|
|
bar = ""
|
|
}
|
|
|
|
constructor(a: Int) : super(a) {
|
|
}
|
|
} |