// "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(1) { } }