725df49c8c
(cherry picked from commit f3fa779)
14 lines
195 B
Kotlin
Vendored
14 lines
195 B
Kotlin
Vendored
interface Interface
|
|
|
|
interface Another
|
|
|
|
abstract class Base
|
|
|
|
class Derived : Interface, Base, Another {
|
|
|
|
val x: String
|
|
|
|
constructor(x: String<caret>): super() {
|
|
this.x = x
|
|
}
|
|
} |