aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorHugo Herbelin2018-09-23 16:55:02 +0200
committerHugo Herbelin2018-09-25 13:42:07 +0200
commit1ac3418389789e7288c5fb3576f787b7c2544342 (patch)
treebb14fed31ace857599e94836afff95f4cc3f8c25 /test-suite
parent8c15896b3d3cbfc11f5c493282be3dc1c5c27315 (diff)
Fixing #8532 (regression in Print Assumptions within a functor).
The regression was introduced in 1522b989 (PR #7193) which itself was fixing bug #7192. (Note another regression of the same commit which is fixed in #8416.)
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/bugs/closed/8532.v8
1 files changed, 8 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/8532.v b/test-suite/bugs/closed/8532.v
new file mode 100644
index 0000000000..00aa66e701
--- /dev/null
+++ b/test-suite/bugs/closed/8532.v
@@ -0,0 +1,8 @@
+(* Checking Print Assumptions relatively to a bound module *)
+
+Module Type Typ.
+ Parameter Inline(10) t : Type.
+End Typ.
+Module Terms_mod (SetVars : Typ).
+Print Assumptions SetVars.t.
+End Terms_mod.