fix(library/class_instance_resolution): incorrect assertion

This commit is contained in:
Leonardo de Moura 2015-10-18 12:20:33 -07:00
parent 443aca6280
commit 5f90ff0f07

View file

@ -1036,7 +1036,8 @@ struct cienv {
}
bool backtrack() {
lean_assert(!m_choices.empty());
if (m_choices.empty())
return false;
while (true) {
m_choices.pop_back();
if (m_choices.empty())