[FIR] Fix processing integer operator calls for not integer types

This commit is contained in:
Dmitriy Novozhilov
2020-09-14 10:52:54 +03:00
parent def647c094
commit 535898c8a4
8 changed files with 75 additions and 55 deletions
@@ -12,9 +12,9 @@ class B {
fun test() {
with(B()) {
with(A()) {
<!INAPPLICABLE_CANDIDATE!>takeString<!>(1 % "")
takeString(1 % "")
}
}
}
fun takeString(s: String) {}
fun takeString(s: String) {}