diff options
| author | coqbot-app[bot] | 2020-11-02 12:59:35 +0000 |
|---|---|---|
| committer | GitHub | 2020-11-02 12:59:35 +0000 |
| commit | 35354fcb1d86fc0e8a9372b17e43a2b4a409a00e (patch) | |
| tree | 7586614d9a161cd943cb26cd170306cdfb34958a /test-suite | |
| parent | a89ac22aec0305b9dbf18dc147b8fe9db3b540c6 (diff) | |
| parent | 42c1887379f3063e593910c569e3db8f227ac1b9 (diff) | |
Merge PR #13274: Fix two bugs in conversion of primitive values
Reviewed-by: SkySkimmer
Diffstat (limited to 'test-suite')
| -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. |
