aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2018-09-25 20:12:39 +0200
committerPierre-Marie Pédrot2018-09-25 20:12:39 +0200
commit7cc70b0df61718a946327d5bfb056b140eeb54ba (patch)
tree577a2f193d2cca1e749f0fdca05248786c3039d0 /test-suite
parent7c5191282697c091d576b938adadc7a23ac8b9bd (diff)
parent1ac3418389789e7288c5fb3576f787b7c2544342 (diff)
Merge PR #8535: Fixing #8532: regression in Print Assumptions within a functor.
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.