mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 08:31:31 +00:00
8 lines
180 B
Kotlin
8 lines
180 B
Kotlin
// "Create secondary constructor" "true"
|
|
// ERROR: Too many arguments for public/*package*/ constructor J() defined in J
|
|
|
|
class B: J {
|
|
constructor(): super(<caret>1) {
|
|
|
|
}
|
|
} |