diff options
| author | Pierre-Marie Pédrot | 2016-05-09 18:37:29 +0200 |
|---|---|---|
| committer | Pierre-Marie Pédrot | 2016-05-09 18:40:35 +0200 |
| commit | cd9f2859e69d99aea5b29a6d677448a39a234b6f (patch) | |
| tree | 500a8b0d1c36662f590c7956cf932663028186be /test-suite/bugs | |
| parent | 4114926d5bf60b014c363788d043c00184655da2 (diff) | |
| parent | aa6a7fc837f8148655c179e9a0b63c3044edfe71 (diff) | |
Merge branch 'v8.5'
Diffstat (limited to 'test-suite/bugs')
| -rw-r--r-- | test-suite/bugs/closed/4713.v | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/4713.v b/test-suite/bugs/closed/4713.v new file mode 100644 index 0000000000..5d4d73be3f --- /dev/null +++ b/test-suite/bugs/closed/4713.v @@ -0,0 +1,10 @@ +Module Type T. + Parameter t : Type. +End T. +Module M : T. + Definition t := unit. +End M. + +Fail Module Z : T with Module t := M := M. +Fail Module Z <: T with Module t := M := M. +Fail Declare Module Z : T with Module t := M. |
