[FIR] Add mapping of primitive types to JVM signatures

This commit is contained in:
Dmitriy Novozhilov
2020-02-17 10:52:53 +03:00
parent 031952268a
commit d10e56c358
5 changed files with 39 additions and 1 deletions
@@ -7,6 +7,6 @@ interface A : MutableCollection<String> {
}
fun foo(x: MutableList<String>, y: A) {
x.<!UNRESOLVED_REFERENCE!>removeIf<!> { <!UNRESOLVED_REFERENCE!>it<!>.<!UNRESOLVED_REFERENCE!>length<!> > 0 }
x.removeIf { it.length > 0 }
y.removeIf { it.length > 0 }
}