FIR: Support proper loading of Map.merge

This commit is contained in:
Denis Zharkov
2020-03-06 18:09:40 +03:00
parent 4a1302e385
commit 15a0157c42
4 changed files with 21 additions and 0 deletions
@@ -116,6 +116,10 @@ private fun StringBuilder.appendConeType(coneType: ConeKotlinType) {
appendClassLikeType(representative.coneTypeUnsafe())
}
}
is ConeDefinitelyNotNullType -> {
appendConeType(coneType.original)
return
}
is ConeFlexibleType -> {
appendConeType(coneType.lowerBound)
return