diff options
| author | Emilio Jesus Gallego Arias | 2018-09-03 01:07:45 +0200 |
|---|---|---|
| committer | Emilio Jesus Gallego Arias | 2018-09-03 01:07:45 +0200 |
| commit | 4d2e117964df8e5bd7222192318b11820f92db78 (patch) | |
| tree | 9b071495a2accb52e25cf9ec060875d7a41b313b /test-suite | |
| parent | 6f1c4ac389e595e09fdf4653847d8c3ccca0befb (diff) | |
| parent | 0e7ff6359c144c5ab4d7e16334c8ddc0d3078125 (diff) | |
Merge PR #8286: Fixing #7867: class error message tried to print a "fun" with no binders
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/bugs/closed/7867.v | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/7867.v b/test-suite/bugs/closed/7867.v new file mode 100644 index 0000000000..d0c7902756 --- /dev/null +++ b/test-suite/bugs/closed/7867.v @@ -0,0 +1,4 @@ +(* Was a printer anomaly due to an internal lambda with no binders *) + +Class class := { foo : nat }. +Fail Instance : class := { foo := 0 ; bar := 0 }. |
