21 lines
427 B
Plaintext
Vendored
21 lines
427 B
Plaintext
Vendored
class A(x: Double) {
|
|
constructor(x: Int) {}
|
|
constructor(x: String) {}
|
|
<caret>constructor(): this("abc") {}
|
|
}
|
|
|
|
|
|
|
|
Resolved call:
|
|
|
|
Candidate descriptor: constructor A(x: String) defined in A
|
|
Resulting descriptor: constructor A(x: String) defined in A
|
|
|
|
Explicit receiver kind = NO_EXPLICIT_RECEIVER
|
|
Dispatch receiver = NO_RECEIVER
|
|
Extension receiver = NO_RECEIVER
|
|
|
|
Value arguments mapping:
|
|
|
|
SUCCESS x : String = "abc"
|