feat(frontends/lean/inductive_cmd): local notation in inductive decls

This commit is contained in:
Leonardo de Moura 2015-03-29 12:16:21 -07:00
parent 033f3b630d
commit cb2a5eeb3c

View file

@ -245,6 +245,7 @@ struct inductive_cmd_fn {
*/
list<intro_rule> parse_intro_rules(name const & ind_name) {
buffer<intro_rule> intros;
m_p.parse_local_notation_decl();
if (m_p.curr_is_token(get_bar_tk()))
m_p.next();
while (true) {