aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/bugs/opened
diff options
context:
space:
mode:
authorGravatar notin <notin@85f007b7-540e-0410-9357-904b9bb8a0f7>2007-08-10 12:06:59 +0000
committerGravatar notin <notin@85f007b7-540e-0410-9357-904b9bb8a0f7>2007-08-10 12:06:59 +0000
commitb8ad07a703040113720bbb11e3e87920aa874baf (patch)
tree9bf3af2cdc09f226f671ce9f66b0bbaa859c59f6 /test-suite/bugs/opened
parent4f11ea967cca6f2249f192651d1df84c79150440 (diff)
Modification de la test suite pour intégrer des tests spécifiques aux
bugs soumis sur Coq-bugs. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@10068 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'test-suite/bugs/opened')
-rw-r--r--test-suite/bugs/opened/shouldnotfail/1680.v9
1 files changed, 9 insertions, 0 deletions
diff --git a/test-suite/bugs/opened/shouldnotfail/1680.v b/test-suite/bugs/opened/shouldnotfail/1680.v
new file mode 100644
index 000000000..524c7bab4
--- /dev/null
+++ b/test-suite/bugs/opened/shouldnotfail/1680.v
@@ -0,0 +1,9 @@
+Ltac int1 := let h := fresh in intro h.
+
+Goal nat -> nat -> True.
+ let h' := fresh in (let h := fresh in intro h); intro h'.
+ Restart. let h' := fresh in int1; intro h'.
+ trivial.
+Qed.
+
+