[FIR] Require equivalent candidates to have the same parameters order

NB: In general, it's unclear what to do in cases
like the following one, even when sometimes
we could, indeed, prefer something:

```
fun foo(a: Int, b: String, c: Boolean)
fun foo(b: String, c: Boolean, a: Int)

foo(c = false, b = "", a = 0)
```

^KT-55933 Fixed
This commit is contained in:
Nikolay Lunyak
2023-07-05 17:31:12 +03:00
committed by Space Team
parent 4f0563dee1
commit fe783d7121
4 changed files with 13 additions and 17 deletions
@@ -1,3 +1,4 @@
// FIR_IDENTICAL
// DIAGNOSTICS: -DEBUG_INFO_MISSING_UNRESOLVED
// ISSUE: KT-55933