summaryrefslogtreecommitdiff
path: root/test-suite/success/clear.v
blob: 444146f7f936a85c2444f3f6553e90813ea83bb1 (plain)
1
2
3
4
5
6
Goal forall x:nat, (forall x, x=0 -> True)->True.
  intros; eapply H.
  instantiate (1:=(fun y => _) (S x)).
  simpl.
  clear x || trivial.
Qed.