fix(frontends/lean/elaborator): remove annotation left-over

This commit is contained in:
Leonardo de Moura 2014-09-12 14:14:20 -07:00
parent 563cfa73ec
commit b7dcb8f833

View file

@ -708,6 +708,8 @@ public:
return visit(get_annotation_arg(e), cs);
} else if (is_typed_expr(e)) {
return visit_typed_expr(e, cs);
} else if (is_implicit(e)) {
return visit_core(get_implicit_arg(e), cs);
} else {
switch (e.kind()) {
case expr_kind::Local: return e;