summaryrefslogtreecommitdiff
path: root/test-suite/bugs/closed/7700.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/bugs/closed/7700.v')
-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 00000000..56f5481b
--- /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.