Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createSecondaryConstructor/delegatorToSuperCallNoClass.kt
T
2015-05-13 16:13:13 +02:00

10 lines
135 B
Kotlin
Vendored

// "Create secondary constructor" "false"
// ERROR: This class does not have a constructor
interface T {
}
class A: T(<caret>1) {
}