Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createSecondaryConstructor/superCallNoClass.kt
T
Toshiaki Kameyama d54a35ef56 Add "Remove argument" quick fix for TOO_MANY_ARGUMENTS
#KT-34026 Fixed
#KT-34332 Fixed
2020-02-23 10:17:10 +01:00

14 lines
242 B
Kotlin
Vendored

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