summaryrefslogtreecommitdiff
path: root/Test/dafny3/CalcExample.dfy
diff options
context:
space:
mode:
Diffstat (limited to 'Test/dafny3/CalcExample.dfy')
-rw-r--r--Test/dafny3/CalcExample.dfy4
1 files changed, 2 insertions, 2 deletions
diff --git a/Test/dafny3/CalcExample.dfy b/Test/dafny3/CalcExample.dfy
index c94c18d2..dcd41077 100644
--- a/Test/dafny3/CalcExample.dfy
+++ b/Test/dafny3/CalcExample.dfy
@@ -19,8 +19,8 @@ method M(a: int, b: int, c: int, x: int)
f(f(a, b), c);
{ assert f(a, b) == x; }
f(x, c);
- { assert c <= x; Monotonicity(c, x); }
- <= f(x, x);
+ <= { assert c <= x; Monotonicity(c, x); }
+ f(x, x);
{ DiagonalIdentity(x); }
x;
}