8 lines
112 B
Text
8 lines
112 B
Text
exit
|
|
tactic_notation `foo` A := tactic.id
|
|
|
|
example (a : nat) : a = a :=
|
|
begin
|
|
foo (10:nat),
|
|
reflexivity
|
|
end
|