[IC] Fixed IC for when expressions involving sealed interfaces

#KT-45474 Fixed
This commit is contained in:
Andrey Uskov
2022-06-10 16:39:26 +03:00
committed by teamcity
parent 7b8188d344
commit 21e762458e
3 changed files with 45 additions and 30 deletions
@@ -281,7 +281,7 @@ object ClasspathChangesComputer {
val unmatchedLookupSymbols = dirtyData.dirtyLookupSymbols.toMutableSet().also {
it.removeAll(changes.lookupSymbols.toSet())
}
val unmatchedFqNames = (dirtyData.dirtyClassesFqNames + dirtyData.dirtyClassesFqNamesForceRecompile).toMutableSet().also {
val unmatchedFqNames = (dirtyData.dirtyClassesFqNames).toMutableSet().also {
it.removeAll(changes.fqNames.toSet())
}