Files
kotlin-fork/idea/testData/intentions/convertSecondaryConstructorToPrimary/withBaseClassNoArgs.kt
T
2016-09-30 16:39:24 +03:00

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
}
}