aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/bugs
diff options
context:
space:
mode:
authorGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2018-06-10 12:51:08 +0200
committerGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2018-06-10 12:52:13 +0200
commitd192a84105a13f6c7fad376895a3569c1257a5d4 (patch)
tree3f49036a20ef187351d747069816ffe4bf6ffc0c /test-suite/bugs
parent51a56b1aacb516af513de64c00dd7e796f661484 (diff)
Fixing #7700 (section variables bound to abbreviations were not found).
Redundancy between finding section variables in both interp_var and interp_qualid could probably be cleaned.
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 000000000..56f5481ba
--- /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.