fix(library/match): bug in matcher

This commit is contained in:
Leonardo de Moura 2015-02-03 13:28:57 -08:00
parent 10357f3f53
commit 45e62031e2

View file

@ -311,8 +311,6 @@ class match_fn : public match_context {
auto s = _get_subst(p);
if (s) {
return match_core(*s, t);
} else if (has_local(t)) {
return false;
} else {
_assign(p, t);
return true;