aboutsummaryrefslogtreecommitdiff
path: root/test-suite/bugs
diff options
context:
space:
mode:
authorHugo Herbelin2020-08-13 16:49:23 +0200
committerHugo Herbelin2020-08-13 16:49:23 +0200
commitab2a867759745d846a75efe21e7208f560ccd7a5 (patch)
tree6352133360df182e20709d0b7f65129c94b613d3 /test-suite/bugs
parent8ef70779368dc6c69e27df8655de9c985bc89394 (diff)
parentfcc3db46303d97e0696a1685619301be3622f4e9 (diff)
Merge PR #12556: Bring Float notations in line with stdlib
Reviewed-by: erikmd Reviewed-by: herbelin
Diffstat (limited to 'test-suite/bugs')
-rw-r--r--test-suite/bugs/closed/bug_12483.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/test-suite/bugs/closed/bug_12483.v b/test-suite/bugs/closed/bug_12483.v
index 0d034a65eb..ae46117e59 100644
--- a/test-suite/bugs/closed/bug_12483.v
+++ b/test-suite/bugs/closed/bug_12483.v
@@ -4,7 +4,7 @@ Goal False.
Proof.
cut (false = true).
{ intro H; discriminate H. }
-change false with (1 <= 0)%float.
+change false with (1 <=? 0)%float.
rewrite leb_spec.
Fail reflexivity.
Abort.