fix(frontends/lean/notation_cmd): initialization bug
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
aa8b5655dd
commit
61595f516c
1 changed files with 1 additions and 1 deletions
|
@ -166,7 +166,7 @@ static expr parse_notation_expr(parser & p, buffer<expr> const & locals) {
|
||||||
return abstract(r, locals.size(), locals.data());
|
return abstract(r, locals.size(), locals.data());
|
||||||
}
|
}
|
||||||
|
|
||||||
static expr g_local_type = Bool; // type used in notation local declarations, it is irrelevant
|
static expr g_local_type = mk_Bool(); // type used in notation local declarations, it is irrelevant
|
||||||
|
|
||||||
static void parse_notation_local(parser & p, buffer<expr> & locals) {
|
static void parse_notation_local(parser & p, buffer<expr> & locals) {
|
||||||
if (p.curr_is_identifier()) {
|
if (p.curr_is_identifier()) {
|
||||||
|
|
Loading…
Reference in a new issue