aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorPierre Roux2020-06-18 20:12:36 +0200
committerPierre Roux2020-06-18 20:22:52 +0200
commitd958feb5f30255d3b9ca84bf5be89c299ddb8a5f (patch)
tree4c200b9fb278ccb2f0d990a856bb211682d30adc /test-suite
parent33e763a441022623621536766ac38c3021dcb65c (diff)
Fix #12228 negative integers not accepted in ltac integer_list
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/bugs/closed/bug_12228.v4
1 files changed, 4 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/bug_12228.v b/test-suite/bugs/closed/bug_12228.v
new file mode 100644
index 0000000000..a874fa0570
--- /dev/null
+++ b/test-suite/bugs/closed/bug_12228.v
@@ -0,0 +1,4 @@
+Tactic Notation "mark" constr(P) "at" integer_list(L) := pattern P at L.
+Goal 0 = 0.
+mark 0 at -2.
+Abort.