summaryrefslogtreecommitdiff
path: root/Chalice/tests/predicates/framing-fields.chalice
diff options
context:
space:
mode:
Diffstat (limited to 'Chalice/tests/predicates/framing-fields.chalice')
-rw-r--r--Chalice/tests/predicates/framing-fields.chalice3
1 files changed, 0 insertions, 3 deletions
diff --git a/Chalice/tests/predicates/framing-fields.chalice b/Chalice/tests/predicates/framing-fields.chalice
index ce168f26..6cfd4607 100644
--- a/Chalice/tests/predicates/framing-fields.chalice
+++ b/Chalice/tests/predicates/framing-fields.chalice
@@ -11,9 +11,6 @@ class C
{
method M (x:List, y:List)
requires x!=null && y!=null && x!=y && x.valid && y.valid;
- requires unfolding x.valid in x.next!=y;
- requires unfolding y.valid in y.next!=x;
- // the two requirements above are needed, otherwise Chalice cannot prove that the two lists are disjoint
{
var i: int := unfolding x.valid in x.value;
var j: int := unfolding y.valid in y.value;