summaryrefslogtreecommitdiff
path: root/Test/dafny1/Queue.dfy
diff options
context:
space:
mode:
Diffstat (limited to 'Test/dafny1/Queue.dfy')
-rw-r--r--Test/dafny1/Queue.dfy4
1 files changed, 2 insertions, 2 deletions
diff --git a/Test/dafny1/Queue.dfy b/Test/dafny1/Queue.dfy
index 0edfab81..8396ec5c 100644
--- a/Test/dafny1/Queue.dfy
+++ b/Test/dafny1/Queue.dfy
@@ -85,12 +85,12 @@ class Queue<T> {
tail.next := n;
tail := n;
- parallel (m | m in spine) {
+ forall m | m in spine {
m.tailContents := m.tailContents + [t];
}
contents := head.tailContents;
- parallel (m | m in spine) {
+ forall m | m in spine {
m.footprint := m.footprint + n.footprint;
}
footprint := footprint + n.footprint;