aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2019-02-02 17:48:02 +0100
committerPierre-Marie Pédrot2019-02-02 17:48:02 +0100
commit8eeb5d6004a4d9bb8fbd776ac4c8273adb2887a6 (patch)
treefe05667312ad548813e84334efaea68b9091f45e /test-suite
parent0d4b9df02c37c7107e9cdc085a8b7b2a6039b9bf (diff)
parentd3d142f406239b6e528d27454d1b3f4e3d6fd4ea (diff)
Merge PR #9250: coqchk: fix check for kelim with functors
Ack-by: mattam82 Reviewed-by: ppedrot
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/coqchk/inductive_functor_squash.v15
1 files changed, 15 insertions, 0 deletions
diff --git a/test-suite/coqchk/inductive_functor_squash.v b/test-suite/coqchk/inductive_functor_squash.v
new file mode 100644
index 0000000000..9d33fafc4c
--- /dev/null
+++ b/test-suite/coqchk/inductive_functor_squash.v
@@ -0,0 +1,15 @@
+
+
+Module Type T.
+ Parameter f : nat -> Type.
+End T.
+
+Module F(A:T).
+ Inductive ind : Prop :=
+ C : A.f 0 -> ind.
+End F.
+
+Module A. Definition f (x:nat) := True. End A.
+
+Module M := F A.
+(* M.ind could eliminate into Set/Type even though F.ind can't *)