diff options
| author | Guillaume Melquiond | 2020-06-09 20:35:55 +0200 |
|---|---|---|
| committer | Guillaume Melquiond | 2020-06-09 20:35:55 +0200 |
| commit | 95be052f60b1b6b4cc0b12e92b3d1b86b5bd7ca9 (patch) | |
| tree | 12e87cc010637051271423455d5b1bf42269215b /test-suite | |
| parent | 95fb6a9e62bc061db5c9fe39a25d69b7cf2cd06e (diff) | |
| parent | 9c76e6b4c9ae24826668fa9f72faf93e5d4c6acf (diff) | |
Merge PR #12484: Fix #12483 Incorrect specification of PrimFloat.leb
Ack-by: Zimmi48
Reviewed-by: erikmd
Reviewed-by: silene
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/bugs/closed/bug_12483.v | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/bug_12483.v b/test-suite/bugs/closed/bug_12483.v new file mode 100644 index 0000000000..0d034a65eb --- /dev/null +++ b/test-suite/bugs/closed/bug_12483.v @@ -0,0 +1,10 @@ +Require Import Floats. + +Goal False. +Proof. +cut (false = true). +{ intro H; discriminate H. } +change false with (1 <= 0)%float. +rewrite leb_spec. +Fail reflexivity. +Abort. |
