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