diff options
| author | Gaëtan Gilbert | 2020-08-26 16:13:49 +0200 |
|---|---|---|
| committer | Gaëtan Gilbert | 2020-08-26 16:13:49 +0200 |
| commit | edd11666d9e23f917929b57485010d4288d8beb3 (patch) | |
| tree | 650bb0097b8355c49c3bfbfee8f7ede853508019 /test-suite | |
| parent | 4e6b029805a74ea16166da2c5f59f9669fd34eb8 (diff) | |
Fix algebraic comparison with sprop on one side
Close #12909
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/bugs/closed/bug_12909.v | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/bug_12909.v b/test-suite/bugs/closed/bug_12909.v new file mode 100644 index 0000000000..fafb6a418f --- /dev/null +++ b/test-suite/bugs/closed/bug_12909.v @@ -0,0 +1,8 @@ +Module Type T. +Axiom A : Type. +End T. + +Module M. + Axiom A : SProp. +End M. +Fail Module N <: T := M. |
