diff options
| author | Maxime Dénès | 2018-03-04 16:32:21 +0100 |
|---|---|---|
| committer | Maxime Dénès | 2018-03-04 16:32:21 +0100 |
| commit | 97f4f3cc0425b62b1e23454dca85a10eea605ef5 (patch) | |
| tree | 3f7715946b597188bc78d2e15c9582b36e3e63fc /test-suite | |
| parent | 346e73cef9e4e89c90f9f6f7011d54e3a0a35d96 (diff) | |
| parent | 01cf21509667263c2067cb87e2b2f604c4f9cb1e (diff) | |
Merge PR #6879: Fix #6878: univ undefined for [with Definition] bad instance size.
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/bugs/closed/6878.v | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/6878.v b/test-suite/bugs/closed/6878.v new file mode 100644 index 0000000000..70f1b3127a --- /dev/null +++ b/test-suite/bugs/closed/6878.v @@ -0,0 +1,8 @@ + +Set Universe Polymorphism. +Module Type T. + Axiom foo : Prop. +End T. + +(** Used to anomaly *) +Fail Module M : T with Definition foo := Type. |
