summaryrefslogtreecommitdiff
path: root/Test/dafny1/BDD.dfy
diff options
context:
space:
mode:
Diffstat (limited to 'Test/dafny1/BDD.dfy')
-rw-r--r--Test/dafny1/BDD.dfy1
1 files changed, 1 insertions, 0 deletions
diff --git a/Test/dafny1/BDD.dfy b/Test/dafny1/BDD.dfy
index 252164db..59dc3092 100644
--- a/Test/dafny1/BDD.dfy
+++ b/Test/dafny1/BDD.dfy
@@ -55,6 +55,7 @@ module SimpleBDD
node := if s[n-i] then node.t else node.f;
i := i - 1;
}
+ assert s[n-i..] == [];
b := node.b;
}
}