[FIR] Fix JVM mapped function callable id

This commit is contained in:
Mikhail Glukhikh
2020-08-28 18:40:18 +03:00
parent db815c96c5
commit 5efabe063e
10 changed files with 92 additions and 5 deletions
@@ -0,0 +1,9 @@
// WITH_RUNTIME
// FULL_JDK
class Owner {
fun <T> foo(x: T, y: T) {
val map = mutableMapOf<T, T>()
map.putIfAbsent(x, y)
}
}