fix(library/class_instance_resolution): incorrect assertion
This commit is contained in:
parent
443aca6280
commit
5f90ff0f07
1 changed files with 2 additions and 1 deletions
|
@ -1036,7 +1036,8 @@ struct cienv {
|
||||||
}
|
}
|
||||||
|
|
||||||
bool backtrack() {
|
bool backtrack() {
|
||||||
lean_assert(!m_choices.empty());
|
if (m_choices.empty())
|
||||||
|
return false;
|
||||||
while (true) {
|
while (true) {
|
||||||
m_choices.pop_back();
|
m_choices.pop_back();
|
||||||
if (m_choices.empty())
|
if (m_choices.empty())
|
||||||
|
|
Loading…
Reference in a new issue