diff options
| author | Pierre-Marie Pédrot | 2019-05-28 00:37:58 +0200 |
|---|---|---|
| committer | Pierre-Marie Pédrot | 2019-05-28 10:43:09 +0200 |
| commit | 14da886bf69c13bdd5f8d700351c8253ff7f6981 (patch) | |
| tree | cbbb2e5b9c2006d40c60f1a96969cff68fa60d6d /test-suite | |
| parent | e005f390312b8900df36aa27bc087e18701c8fcd (diff) | |
Fix #10264: Singleton class field data is erroneous.
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. |
