diff options
author | Rustan Leino <leino@microsoft.com> | 2012-01-26 13:05:50 -0800 |
---|---|---|
committer | Rustan Leino <leino@microsoft.com> | 2012-01-26 13:05:50 -0800 |
commit | 80fbe74f7cc472c733a85a90f774182d0d0a8964 (patch) | |
tree | ca44d7260b1b3ae4c2ea52d9a9ebb15765428f9b /Test | |
parent | 9e786072739644a116b8720ba5c28cf4daec22ed (diff) |
Dafny: fixed bug in compilation of let expressions.
Diffstat (limited to 'Test')
-rw-r--r-- | Test/dafny1/Rippling.dfy | 2 |
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));
{
}
|