diff options
| author | Pierre-Marie Pédrot | 2020-10-26 15:42:25 +0100 |
|---|---|---|
| committer | Pierre-Marie Pédrot | 2020-10-26 15:42:45 +0100 |
| commit | 42c1887379f3063e593910c569e3db8f227ac1b9 (patch) | |
| tree | 436a6ad1bb00c96f2a015c0b19b7786632090beb | |
| parent | 786f3b7d2d5cfdf3a5643192e5103863a8a04b1c (diff) | |
Adding a test for the second bug.
| -rw-r--r-- | test-suite/bugs/closed/bug_13276.v | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/bug_13276.v b/test-suite/bugs/closed/bug_13276.v new file mode 100644 index 0000000000..15ac7e7b36 --- /dev/null +++ b/test-suite/bugs/closed/bug_13276.v @@ -0,0 +1,9 @@ +From Coq Require Import Floats. +Open Scope float_scope. + +Lemma foo : + let n := opp 0 in sub n 0 = n. +Proof. +cbv. +apply eq_refl. +Qed. |
