diff options
| author | Gaëtan Gilbert | 2020-03-28 11:18:20 +0100 |
|---|---|---|
| committer | Gaëtan Gilbert | 2020-03-28 11:18:20 +0100 |
| commit | bc3ff0cd801716694a0dd8c053218517d2e49ba6 (patch) | |
| tree | 673d216bfd19136ad0cb431b937db8e7d2768b91 /test-suite | |
| parent | 28081c1108a84050566d365bd665d05ee508ecce (diff) | |
Fix #11941: anomaly in equality schemes
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/bugs/closed/bug_11941.v | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/bug_11941.v b/test-suite/bugs/closed/bug_11941.v new file mode 100644 index 0000000000..87cb462991 --- /dev/null +++ b/test-suite/bugs/closed/bug_11941.v @@ -0,0 +1,5 @@ +Inductive Box A := box (_:A). +Inductive unit := tt. +Definition t := unit. +Record foo := { bar : Box t }. +Fail Scheme Equality for foo. |
