aboutsummaryrefslogtreecommitdiff
path: root/tests/errors.v
diff options
context:
space:
mode:
authorMaxime Dénès2019-04-25 12:02:43 +0200
committerMaxime Dénès2019-04-25 12:09:44 +0200
commit66b6e83f4f4c32ad86333e13d65329be02c46048 (patch)
treea7c2ae2edfe69f8a207d990b6f34f7a497615a27 /tests/errors.v
parent5131640774d0256a390790b5becc864935585ce8 (diff)
Prepare merge into Coq
Diffstat (limited to 'tests/errors.v')
-rw-r--r--tests/errors.v12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/errors.v b/tests/errors.v
deleted file mode 100644
index c677f6af5d..0000000000
--- a/tests/errors.v
+++ /dev/null
@@ -1,12 +0,0 @@
-Require Import Ltac2.Ltac2.
-
-Goal True.
-Proof.
-let x := Control.plus
- (fun () => let _ := constr:(nat -> 0) in 0)
- (fun e => match e with Not_found => 1 | _ => 2 end) in
-match Int.equal x 2 with
-| true => ()
-| false => Control.throw (Tactic_failure None)
-end.
-Abort.