FIR: support proper argument mapping for substitution overrides

Related to KT-52762
This commit is contained in:
Mikhail Glukhikh
2022-06-20 11:09:32 +02:00
committed by teamcity
parent a3ee2d7349
commit 481607df43
2 changed files with 2 additions and 3 deletions
@@ -10,6 +10,6 @@ interface C<U> : A<U>, B<U> { // Warning here, this is correct
}
fun test(c: C<Int>) {
c.foo(a = 1)
c.foo(<!NAME_FOR_AMBIGUOUS_PARAMETER!>a<!> = 1)
c.foo(<!NAME_FOR_AMBIGUOUS_PARAMETER!>b<!> = 1)
}