aboutsummaryrefslogtreecommitdiff
path: root/test-suite/bugs
diff options
context:
space:
mode:
authorEmilio Jesus Gallego Arias2018-06-11 17:00:23 +0200
committerEmilio Jesus Gallego Arias2018-06-11 17:00:23 +0200
commit878188f7af6a45236b70e4caa6ac3832c524fa9a (patch)
treefd3b017a8d47ec2cf5f321f20dded99e9f1135fc /test-suite/bugs
parent8a6fb588c400e8f656fe82c26ff754f41e746296 (diff)
parentd192a84105a13f6c7fad376895a3569c1257a5d4 (diff)
Merge PR #7761: Fixing #7700: section variables bound to abbreviations were not found
Diffstat (limited to 'test-suite/bugs')
-rw-r--r--test-suite/bugs/closed/7700.v9
1 files changed, 9 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/7700.v b/test-suite/bugs/closed/7700.v
new file mode 100644
index 0000000000..56f5481baa
--- /dev/null
+++ b/test-suite/bugs/closed/7700.v
@@ -0,0 +1,9 @@
+(* Abbreviations to section variables were not located *)
+Section foo.
+ Let x := Set.
+ Notation y := x.
+ Check y.
+ Variable x' : Set.
+ Notation y' := x'.
+ Check y'.
+End foo.