diff options
author | Rustan Leino <leino@microsoft.com> | 2011-05-27 14:15:51 -0700 |
---|---|---|
committer | Rustan Leino <leino@microsoft.com> | 2011-05-27 14:15:51 -0700 |
commit | 74d125e5ba85f2d92e7240de52a7888ffed36956 (patch) | |
tree | 647becc54d8e3ca681a7ad713dfd53a89ebb2857 /Test/dafny1/SeparationLogicList.dfy | |
parent | 38a81d249bdc1f40359a7d2c74b33c7a198bc551 (diff) | |
parent | 065fa79887779fbfbc14700744acd684c59aa3ec (diff) |
Merge
Diffstat (limited to 'Test/dafny1/SeparationLogicList.dfy')
-rw-r--r-- | Test/dafny1/SeparationLogicList.dfy | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Test/dafny1/SeparationLogicList.dfy b/Test/dafny1/SeparationLogicList.dfy index 7828a54e..56a64bd6 100644 --- a/Test/dafny1/SeparationLogicList.dfy +++ b/Test/dafny1/SeparationLogicList.dfy @@ -28,7 +28,7 @@ class Node<T> { l.next := null;
S := {l};
} else {
- call l, S := Cons(x, null, [], {});
+ l, S := Cons(x, null, [], {});
}
}
@@ -75,7 +75,7 @@ class ListNode<T> { l.Repr := {l};
l.Contents := [x];
} else {
- call l := Cons(x, null);
+ l := Cons(x, null);
}
}
|