SymbolTable: unmute the symbol comparison condition

#KT-57049 Fixed
This commit is contained in:
Mikhail Glukhikh
2023-04-27 16:30:58 +02:00
committed by Space Team
parent e92cb49b24
commit 6c5afa4b87
@@ -220,7 +220,7 @@ open class SymbolTable(
protected inline fun createOwnerSafe(symbol: S, createOwner: (S) -> B): B {
val owner = createOwner(symbol)
assert(symbol.isBound /*&& symbol.owner === owner*/) // TODO: unmute the second condition immediately when KT-57049 is fixed
assert(symbol.isBound && symbol.owner === owner)
return owner
}
}