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

10 lines
131 B
Kotlin

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