diff options
| author | Jasper Hugunin | 2020-08-19 15:39:07 -0700 |
|---|---|---|
| committer | Jasper Hugunin | 2020-08-20 15:55:34 -0700 |
| commit | a2b4233a379951f9c07d145023201fb536098570 (patch) | |
| tree | 3b9b7a6db6d1a70ef1ee14694afae805462ddb61 /test-suite | |
| parent | 609152467f4d717713b7ea700f5155fc9f341cd7 (diff) | |
Use properly fresh names for Scheme Equality
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/bugs/closed/bug_12763.v | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/bug_12763.v b/test-suite/bugs/closed/bug_12763.v new file mode 100644 index 0000000000..6cbcc0d3b0 --- /dev/null +++ b/test-suite/bugs/closed/bug_12763.v @@ -0,0 +1,6 @@ +Inductive bool_list := S (y : bool) (l : bool_list) | O. +Scheme Equality for bool_list. + +Set Mangle Names. +Scheme Equality for nat. +Scheme Equality for list. |
