diff options
| author | Matthieu Sozeau | 2019-06-04 17:41:59 +0200 |
|---|---|---|
| committer | Matthieu Sozeau | 2019-06-04 17:41:59 +0200 |
| commit | e9c42c26d1fc653d1411fa2fe41b12bffa8ae992 (patch) | |
| tree | 6aa804c3fc51b6150d628964da7999038e64789c /test-suite | |
| parent | 589aaf4f97d5cfcdabfda285739228f5ee52261f (diff) | |
| parent | 14da886bf69c13bdd5f8d700351c8253ff7f6981 (diff) | |
Merge PR #10265: Fix #10264: Singleton class field data is erroneous.
Reviewed-by: mattam82
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/bugs/closed/bug_10264.v | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/bug_10264.v b/test-suite/bugs/closed/bug_10264.v new file mode 100644 index 0000000000..8351f8325b --- /dev/null +++ b/test-suite/bugs/closed/bug_10264.v @@ -0,0 +1,10 @@ +Require Import Program.Tactics. + +Definition bla (A:Type) := A. +Existing Class bla. + +Program Instance fubar : bla nat := {}. +Next Obligation. +Fail exact bool. +exact 0. +Qed. |
