Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createSecondaryConstructor/superCallNoClass.kt
T
2016-09-30 16:39:24 +03:00

14 lines
257 B
Kotlin
Vendored

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