aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorGaëtan Gilbert2018-04-22 17:26:03 +0200
committerGaëtan Gilbert2018-07-24 13:49:18 +0200
commita30be8ca7d6b7c6f17aa65de824e02194a7f3a9b (patch)
tree9b43febeca66aa4e8914ac90f9089f87f090da6c /test-suite
parent0108db19c96e1b46346f032964f2cca3f8149cb3 (diff)
Fix #7329: coqchk Include with primitive projections
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/coqchk/include_primproj.v13
1 files changed, 13 insertions, 0 deletions
diff --git a/test-suite/coqchk/include_primproj.v b/test-suite/coqchk/include_primproj.v
new file mode 100644
index 0000000000..804ba1d378
--- /dev/null
+++ b/test-suite/coqchk/include_primproj.v
@@ -0,0 +1,13 @@
+(* #7329 *)
+Set Primitive Projections.
+
+Module M.
+ Module Bar.
+ Record Box := box { unbox : Type }.
+
+ Axiom foo : Box.
+ Axiom baz : forall _ : unbox foo, unbox foo.
+ End Bar.
+End M.
+
+Include M.