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

12 lines
199 B
Kotlin
Vendored

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