summaryrefslogtreecommitdiff
path: root/test-suite/bugs/opened/3849.v
blob: 5290054a06d5f1ea7731bf27154d904381986fa9 (plain)
1
2
3
4
5
6
7
8
Tactic Notation "foo" hyp_list(hs) := clear hs.

Tactic Notation "bar" hyp_list(hs) := foo hs.

Goal True.
do 5 pose proof 0 as ?n0.
foo n1 n2.
Fail bar n3 n4.