summaryrefslogtreecommitdiff
path: root/test-suite/failure/ltac1.v
blob: eef16525d6171383e438a6aac81cec29b6271ec8 (plain)
1
2
3
4
5
6
7
(* Check all variables are different in a Context *)
Ltac X := match goal with
          | x:_,x:_ |- _ => apply x
          end.
Goal True -> True -> True.
intros.
Fail X.