summaryrefslogtreecommitdiff
path: root/float_test8.bpl
diff options
context:
space:
mode:
Diffstat (limited to 'float_test8.bpl')
-rw-r--r--float_test8.bpl5
1 files changed, 2 insertions, 3 deletions
diff --git a/float_test8.bpl b/float_test8.bpl
index 7c23c74f..32fb8863 100644
--- a/float_test8.bpl
+++ b/float_test8.bpl
@@ -1,6 +1,5 @@
procedure F() returns () {
- Logic=QF_FP;
var x : float;
- x := fp(.1) + fp(.1);
- assert x == fp(.2);
+ x := fp(0.1) + fp(0.1);
+ assert x == fp(0.2);
} \ No newline at end of file