summaryrefslogtreecommitdiff
path: root/test-suite/bugs/closed/shouldsucceed/2732.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/bugs/closed/shouldsucceed/2732.v')
-rw-r--r--test-suite/bugs/closed/shouldsucceed/2732.v19
1 files changed, 0 insertions, 19 deletions
diff --git a/test-suite/bugs/closed/shouldsucceed/2732.v b/test-suite/bugs/closed/shouldsucceed/2732.v
deleted file mode 100644
index f22a8ccc..00000000
--- a/test-suite/bugs/closed/shouldsucceed/2732.v
+++ /dev/null
@@ -1,19 +0,0 @@
-(* Check correct behavior of add_primitive_tactic in TACEXTEND *)
-
-(* Added also the case of eauto and congruence *)
-
-Ltac thus H := solve [H].
-
-Lemma test: forall n : nat, n <= n.
-Proof.
- intro.
- thus firstorder.
- Undo.
- thus eauto.
-Qed.
-
-Lemma test2: false = true -> False.
-Proof.
- intro.
- thus congruence.
-Qed.