[FIR] Reproduce KT-62541

This commit is contained in:
Nikolay Lunyak
2023-10-13 11:50:04 +03:00
committed by Space Team
parent 40e8552a8d
commit 06b3c6ec13
7 changed files with 48 additions and 0 deletions
@@ -0,0 +1,9 @@
// ISSUE: KT-62541
fun foo(i1: Int) {}
fun test() {
foo("",
<!TOO_MANY_ARGUMENTS!>2<!>
)
}
@@ -0,0 +1,9 @@
// ISSUE: KT-62541
fun foo(i1: Int) {}
fun test() {
foo(<!TYPE_MISMATCH!>""<!>,
<!TOO_MANY_ARGUMENTS!>2<!>
)
}