diff options
| author | Gaëtan Gilbert | 2020-03-26 13:01:12 +0100 |
|---|---|---|
| committer | Gaëtan Gilbert | 2020-03-26 13:01:12 +0100 |
| commit | a4d6176698f761cfd90ee63f051477c5386d657d (patch) | |
| tree | e90206c02fb4a32d28be20f25130cef0a1e00316 /test-suite | |
| parent | 53a84d4e84034d213e86839d05b87a5cd80b4181 (diff) | |
Fix #11845: anomaly when including partially applied functor
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/bugs/closed/bug_11845.v | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/bug_11845.v b/test-suite/bugs/closed/bug_11845.v new file mode 100644 index 0000000000..d27f8c4ef0 --- /dev/null +++ b/test-suite/bugs/closed/bug_11845.v @@ -0,0 +1,6 @@ + +Module Type T. Parameter Inline v : Prop. End T. + +Module F(A:T). End F. + +Fail Include F. |
