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

12 lines
195 B
Kotlin

// "Create secondary constructor" "false"
// ERROR: Too many arguments for public constructor Any() defined in kotlin.Any
trait T {
}
class A: T {
constructor(): super(<caret>1) {
}
}