fix(library/compiler/eager_lambda_lifting): assertion violation
This commit is contained in:
parent
c4dc338d7d
commit
4bbecf93ed
1 changed files with 1 additions and 1 deletions
|
|
@ -211,7 +211,7 @@ class eager_lambda_lifting_fn {
|
|||
}
|
||||
|
||||
expr visit_terminal(expr const & e) {
|
||||
expr t = find(e).second;
|
||||
expr t = is_fvar(e) ? find(e).second : e;
|
||||
if (is_constructor_app(env(), t)) {
|
||||
buffer<expr> args;
|
||||
get_app_args(e, args);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue