diff options
| author | Emilio Jesus Gallego Arias | 2020-04-01 04:28:17 -0400 |
|---|---|---|
| committer | Emilio Jesus Gallego Arias | 2020-04-01 04:28:17 -0400 |
| commit | c2947292edebf7ef0fc044723b38e020116f65e2 (patch) | |
| tree | 080905350b9d8fcc7b3ca5a5ec86a10e6d8f03b7 /test-suite | |
| parent | 74c8ea1173846a47a8c780fc07757253cad62789 (diff) | |
| parent | bc3ff0cd801716694a0dd8c053218517d2e49ba6 (diff) | |
Merge PR #11945: Fix #11941: anomaly in equality schemes
Reviewed-by: ejgallego
Reviewed-by: ppedrot
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. |
