Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createSecondaryConstructor/delegatorToSuperCallNoClass.kt
T

11 lines
170 B
Kotlin
Vendored

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