d54a35ef56
#KT-34026 Fixed #KT-34332 Fixed
14 lines
242 B
Kotlin
Vendored
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) {
|
|
|
|
}
|
|
} |