725df49c8c
(cherry picked from commit f3fa779)
5 lines
104 B
Kotlin
Vendored
5 lines
104 B
Kotlin
Vendored
abstract class Base(val x: String)
|
|
|
|
class Derived : Base {
|
|
constructor(x: String<caret>): super(x)
|
|
} |