aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2020-08-27 16:48:48 +0200
committerPierre-Marie Pédrot2020-08-27 16:48:48 +0200
commitf140359a6df94d1caa2ccea3da2d48e01eacc44b (patch)
tree0dad051d7c7a597f39c3bc6af1e686c30fe43d1b /test-suite
parentdd7306efc8c3897985913dc7954e553904014ff4 (diff)
parentcfc54842c2a71b7cdb8c59e3ce9fe4a13cedb5ae (diff)
Merge PR #12862: [coqchk] Look inside inner modules as well
Reviewed-by: ppedrot Reviewed-by: proux01
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/output-coqchk/bug_12845.out14
-rw-r--r--test-suite/output-coqchk/bug_12845.v13
2 files changed, 27 insertions, 0 deletions
diff --git a/test-suite/output-coqchk/bug_12845.out b/test-suite/output-coqchk/bug_12845.out
new file mode 100644
index 0000000000..bef45bf2f6
--- /dev/null
+++ b/test-suite/output-coqchk/bug_12845.out
@@ -0,0 +1,14 @@
+
+CONTEXT SUMMARY
+===============
+
+* Theory: Set is predicative
+
+* Axioms: <none>
+
+* Constants/Inductives relying on type-in-type: <none>
+
+* Constants/Inductives relying on unsafe (co)fixpoints: <none>
+
+* Inductives whose positivity is assumed: <none>
+
diff --git a/test-suite/output-coqchk/bug_12845.v b/test-suite/output-coqchk/bug_12845.v
new file mode 100644
index 0000000000..d16146855b
--- /dev/null
+++ b/test-suite/output-coqchk/bug_12845.v
@@ -0,0 +1,13 @@
+Module Type A.
+ Module B.
+ Axiom t : Set.
+ End B.
+End A.
+
+Module a : A.
+ Module B.
+ Definition t : Set := unit.
+ End B.
+End a.
+
+Check a.B.t.