aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/failure/ltac2.v
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2003-01-19 23:06:59 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2003-01-19 23:06:59 +0000
commit2a7f5dd469330a25e94cef75f6cea8c3c3ce256c (patch)
tree73c5d261e73dd620ee9bdb90944e7c1b666d2514 /test-suite/failure/ltac2.v
parentd3950750f636057674c0ee527d5c05937faf90a2 (diff)
Tests ltac
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@3539 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'test-suite/failure/ltac2.v')
-rw-r--r--test-suite/failure/ltac2.v6
1 files changed, 6 insertions, 0 deletions
diff --git a/test-suite/failure/ltac2.v b/test-suite/failure/ltac2.v
new file mode 100644
index 000000000..55925a7a6
--- /dev/null
+++ b/test-suite/failure/ltac2.v
@@ -0,0 +1,6 @@
+(* Check that Match arguments are forbidden *)
+Tactic Definition E x := Apply x.
+Goal True->True.
+E (Match Context With [ |- ? ] -> Intro H).
+(* Should fail with "Immediate Match producing tactics not allowed in
+ local definitions" *)