6df805d6f2
- Do not report anything else if primary's call expected - Do not repeat EXPLICIT_DELEGATION_CALL_REQUIRED #KT-7230 Fixed
8 lines
169 B
Kotlin
Vendored
8 lines
169 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
open class A(p1: String)
|
|
|
|
class B() : A("") {
|
|
<!PRIMARY_CONSTRUCTOR_DELEGATION_CALL_EXPECTED!>constructor(s: String)<!> {
|
|
}
|
|
}
|