[FIR] Fix tests (ARGUMENT_TYPE_MISMATCH instead of INCOMPATIBLE_CANDIDATE)

This commit is contained in:
Ivan Kochurkin
2021-04-06 01:35:30 +03:00
committed by TeamCityServer
parent 4ffab5fe5a
commit ad9b962536
461 changed files with 1239 additions and 1246 deletions
@@ -3,7 +3,7 @@ fun bar(x: Int) = x + 1
fun foo() {
val x: Int? = null
fun baz() = <!INAPPLICABLE_CANDIDATE!>bar<!>(x)
fun baz() = bar(<!ARGUMENT_TYPE_MISMATCH!>x<!>)
fun quux() = if (x != null) bar(x) else baz()
fun quuux() = bar(if (x == null) 0 else x)
}