blob: e570d0ae3243b899c9e35ecc9eb0a6f85c795f66 [file]
open class B(x: Double) {
constructor(x: Int) {}
constructor(x: String) {}
}
interface C
class A : B, C {
<caret>constructor(): super("abc") { }
}
Resolved call:
Resulting descriptor: constructor B(x: String) defined in B
Explicit receiver kind = NO_EXPLICIT_RECEIVER
Dispatch receiver = NO_RECEIVER
Extension receiver = NO_RECEIVER
Value arguments mapping:
SUCCESS x : String = "abc"