236dfe60f1
#KT-40409 Fixed
7 lines
295 B
Kotlin
Vendored
7 lines
295 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
open class B(val prop: Int)
|
|
class A : B {
|
|
constructor(x: Int, y: Int = x <!AMBIGUITY!>+<!> <!UNRESOLVED_REFERENCE!>prop<!> + this.<!UNRESOLVED_REFERENCE!>prop<!> + super.<!UNRESOLVED_REFERENCE!>prop<!>) :
|
|
super(x + prop + this.prop + super.prop)
|
|
}
|