summaryrefslogtreecommitdiff
path: root/Test/dafny2/SnapshotableTrees.dfy
diff options
context:
space:
mode:
Diffstat (limited to 'Test/dafny2/SnapshotableTrees.dfy')
-rw-r--r--Test/dafny2/SnapshotableTrees.dfy4
1 files changed, 2 insertions, 2 deletions
diff --git a/Test/dafny2/SnapshotableTrees.dfy b/Test/dafny2/SnapshotableTrees.dfy
index 96d3707f..b64660b3 100644
--- a/Test/dafny2/SnapshotableTrees.dfy
+++ b/Test/dafny2/SnapshotableTrees.dfy
@@ -1,4 +1,4 @@
-// RUN: %dafny /compile:0 /dprint:"%t.dprint" /vcsMaxKeepGoingSplits:10 "%s" > "%t"
+// RUN: %dafny /compile:0 /dprint:"%t.dprint" "%s" > "%t"
// RUN: %diff "%s.expect" "%t"
// Rustan Leino, September 2011.
@@ -266,7 +266,7 @@ class Node
if (left == n.left) {
r, pos := n, -1;
} else {
- // assert n.left != null ==> forall e :: e in n.left.Contents ==> e < n.data;
+ assert n.left != null ==> forall e :: e in n.left.Contents ==> e < n.data;
// assert forall e :: e in left.Contents ==> e < n.data;
r := new Node.Build(left, n.data, n.right);
}