lean4-htt/tests/lean/run/tactic_notation_num_arg_bug.lean
2016-06-10 18:29:41 -07:00

8 lines
112 B
Text

exit
tactic_notation `foo` A := tactic.id
example (a : nat) : a = a :=
begin
foo (10:nat),
reflexivity
end