fix: unassigned universe metavariables should not block instantiation of delayed assignment

This commit is contained in:
Leonardo de Moura 2020-03-08 17:31:07 -07:00
parent 3b84507888
commit 21353d07d5

View file

@ -532,7 +532,7 @@ partial def main : Expr → M Expr
instArgs f
else do
newVal ← visit main val;
if newVal.hasMVar then
if newVal.hasExprMVar then
instArgs f
else do
args ← args.mapM (visit main);