lean2/tests/lean/run/tactic_notation_num_arg_bug.lean

8 lines
107 B
Text
Raw Normal View History

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