diff options
| author | Maxime Dénès | 2018-02-19 11:17:43 +0100 |
|---|---|---|
| committer | Maxime Dénès | 2018-02-19 11:17:43 +0100 |
| commit | aec63ba9c8f6840d98ba731640a786138d836343 (patch) | |
| tree | 4cb8fd89ef12bfba60188bfdccaafc5a9ab6007d /test-suite/modules | |
| parent | f0147fd87440396aeaee5eada538e09423fe299e (diff) | |
| parent | 19b04b2bd1c5b505c70723a16505fcb3e6d41ede (diff) | |
Merge PR #6728: Extrude monomorphic universe contexts from with Definition constraints.
Diffstat (limited to 'test-suite/modules')
| -rw-r--r-- | test-suite/modules/SeveralWith.v | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test-suite/modules/SeveralWith.v b/test-suite/modules/SeveralWith.v new file mode 100644 index 0000000000..bbf72a7648 --- /dev/null +++ b/test-suite/modules/SeveralWith.v @@ -0,0 +1,12 @@ +Module Type S. +Parameter A : Type. +End S. + +Module Type ES. +Parameter A : Type. +Parameter eq : A -> A -> Type. +End ES. + +Module Make + (AX : S) + (X : ES with Definition A := AX.A with Definition eq := @eq AX.A). |
