summaryrefslogtreecommitdiff
path: root/Test/dafny1/Rippling.dfy
diff options
context:
space:
mode:
authorGravatar Rustan Leino <leino@microsoft.com>2012-01-26 13:05:50 -0800
committerGravatar Rustan Leino <leino@microsoft.com>2012-01-26 13:05:50 -0800
commit4888eb23bb6ccd0900915ee00d9fcbc25c2f21e1 (patch)
treecea1ae346321712532a8ff68c6b7765ffa6eb894 /Test/dafny1/Rippling.dfy
parent84044e50d78c3fb1bddb6a72ab39bce7cc6caa55 (diff)
Dafny: fixed bug in compilation of let expressions.
Diffstat (limited to 'Test/dafny1/Rippling.dfy')
-rw-r--r--Test/dafny1/Rippling.dfy2
1 files changed, 1 insertions, 1 deletions
diff --git a/Test/dafny1/Rippling.dfy b/Test/dafny1/Rippling.dfy
index 677e6e70..8bed7545 100644
--- a/Test/dafny1/Rippling.dfy
+++ b/Test/dafny1/Rippling.dfy
@@ -303,7 +303,7 @@ ghost method P1()
}
ghost method P2()
- ensures forall n, xs, ys :: add(count(n, xs), count(n, ys)) == count(n, (concat(xs, ys)));
+ ensures forall n, xs, ys :: add(count(n, xs), count(n, ys)) == count(n, concat(xs, ys));
{
}