aboutsummaryrefslogtreecommitdiff
path: root/test-suite/bugs
diff options
context:
space:
mode:
authorEmilio Jesus Gallego Arias2020-05-14 01:45:19 +0200
committerEmilio Jesus Gallego Arias2020-05-14 01:45:19 +0200
commit8b0d7a14c114f438ca663301e6d275094692869b (patch)
treec86f8f44942ab2114c800248df5851b47f447a12 /test-suite/bugs
parent9c639d60715259bf73c1455089fb0c25dc597bdf (diff)
parente9692bedfe275668aeaa244811e090c49f6df64d (diff)
Merge PR #8808: Extending support for mixing binders and terms in abbreviations
Ack-by: Zimmi48 Reviewed-by: ejgallego Reviewed-by: mattam82
Diffstat (limited to 'test-suite/bugs')
-rw-r--r--test-suite/bugs/closed/bug_7903.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/test-suite/bugs/closed/bug_7903.v b/test-suite/bugs/closed/bug_7903.v
index 55c7ee99a7..18e1884ca7 100644
--- a/test-suite/bugs/closed/bug_7903.v
+++ b/test-suite/bugs/closed/bug_7903.v
@@ -1,4 +1,4 @@
(* Slightly improving interpretation of Ltac subterms in notations *)
Notation bar x f := (let z := ltac:(exact 1) in (fun x : nat => f)).
-Check bar x (x + x).
+Check fun x => bar x (x + x).