From d192a84105a13f6c7fad376895a3569c1257a5d4 Mon Sep 17 00:00:00 2001 From: Hugo Herbelin Date: Sun, 10 Jun 2018 12:51:08 +0200 Subject: 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. --- test-suite/bugs/closed/7700.v | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 test-suite/bugs/closed/7700.v (limited to 'test-suite/bugs') 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. -- cgit v1.2.3