725df49c8c
(cherry picked from commit f3fa779)
14 lines
257 B
Kotlin
Vendored
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) {
|
|
|
|
}
|
|
} |