core: Remove debugging statement

pull/363/head
David Mak 2023-12-11 12:18:53 +08:00
parent 95d0c3c93c
commit 5ffd06dd61
1 changed files with 0 additions and 1 deletions

View File

@ -746,7 +746,6 @@ impl Unifier {
(TConstant { value: val1, ty: ty1, .. }, TConstant { value: val2, ty: ty2, .. }) => {
if val1 != val2 {
eprintln!("VALUE MISMATCH: lhs={val1:?} rhs={val2:?} eq={}", val1 == val2);
return self.incompatible_types(a, b)
}
self.unify_impl(*ty1, *ty2, false)?;