diff options
| author | Gaëtan Gilbert | 2018-11-12 12:58:44 +0100 |
|---|---|---|
| committer | Gaëtan Gilbert | 2018-12-05 13:20:58 +0100 |
| commit | 4db7296d629f08c5a71905d8f6d29e2c4e4c0517 (patch) | |
| tree | 86d20bcf47b223de55686a97f2525c54b376742e | |
| parent | 470943bdf917caf352b5347c8d33fc39699805b0 (diff) | |
Add test for #8951.
Close #8951.
| -rw-r--r-- | test-suite/bugs/closed/bug_8951.v | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/bug_8951.v b/test-suite/bugs/closed/bug_8951.v new file mode 100644 index 0000000000..dce19318c5 --- /dev/null +++ b/test-suite/bugs/closed/bug_8951.v @@ -0,0 +1,14 @@ +Module Type T. + Polymorphic Parameter Inline t@{i} : Type@{i}. +End T. + +Module M. + Polymorphic Definition t@{i} := nat. +End M. + +Module Make (X:T). + Include X. + +End Make. + +Module P := Make M. |
