13 lines
215 B
Kotlin
Vendored
13 lines
215 B
Kotlin
Vendored
// "Create secondary constructor" "false"
|
|
// ERROR: Too many arguments for public constructor Any() defined in kotlin.Any
|
|
// WITH_RUNTIME
|
|
|
|
interface T {
|
|
|
|
}
|
|
|
|
class A: T {
|
|
constructor(): super(<caret>1) {
|
|
|
|
}
|
|
} |