summaryrefslogtreecommitdiff
path: root/Test/dafny0/snapshots
diff options
context:
space:
mode:
authorGravatar leino <unknown>2014-08-13 07:24:33 -0700
committerGravatar leino <unknown>2014-08-13 07:24:33 -0700
commit2a6bd63460d27db7fc11f7b99e231f4f587b6a70 (patch)
tree26d89193bc29b6c469eb41a8f88b531e4f7c9513 /Test/dafny0/snapshots
parent9f24fd54271e0e70aba494905416f58ff0348c7c (diff)
Re-included lost calls to CheckEqualityTypes_Type
Modified syntax in some tests, since predicates now require parentheses (without parentheses refers to a predicate, not an application of the predicate)
Diffstat (limited to 'Test/dafny0/snapshots')
-rw-r--r--Test/dafny0/snapshots/Snapshots1.v0.dfy4
-rw-r--r--Test/dafny0/snapshots/Snapshots1.v1.dfy4
-rw-r--r--Test/dafny0/snapshots/Snapshots2.v0.dfy12
-rw-r--r--Test/dafny0/snapshots/Snapshots2.v1.dfy12
4 files changed, 16 insertions, 16 deletions
diff --git a/Test/dafny0/snapshots/Snapshots1.v0.dfy b/Test/dafny0/snapshots/Snapshots1.v0.dfy
index dd1e7deb..34d066c3 100644
--- a/Test/dafny0/snapshots/Snapshots1.v0.dfy
+++ b/Test/dafny0/snapshots/Snapshots1.v0.dfy
@@ -5,9 +5,9 @@ method M()
}
method N()
- ensures P;
+ ensures P();
-predicate P
+predicate P()
{
false
}
diff --git a/Test/dafny0/snapshots/Snapshots1.v1.dfy b/Test/dafny0/snapshots/Snapshots1.v1.dfy
index 93ad6068..184ac65d 100644
--- a/Test/dafny0/snapshots/Snapshots1.v1.dfy
+++ b/Test/dafny0/snapshots/Snapshots1.v1.dfy
@@ -5,9 +5,9 @@ method M()
}
method N()
- ensures P;
+ ensures P();
-predicate P
+predicate P()
{
true
}
diff --git a/Test/dafny0/snapshots/Snapshots2.v0.dfy b/Test/dafny0/snapshots/Snapshots2.v0.dfy
index 37b9982b..727e177d 100644
--- a/Test/dafny0/snapshots/Snapshots2.v0.dfy
+++ b/Test/dafny0/snapshots/Snapshots2.v0.dfy
@@ -5,15 +5,15 @@ method M()
}
method N()
- ensures P;
+ ensures P();
-predicate P
- ensures P == Q;
+predicate P()
+ ensures P() == Q();
-predicate Q
- ensures Q == R;
+predicate Q()
+ ensures Q() == R();
-predicate R
+predicate R()
{
false
}
diff --git a/Test/dafny0/snapshots/Snapshots2.v1.dfy b/Test/dafny0/snapshots/Snapshots2.v1.dfy
index 03719744..02a91b52 100644
--- a/Test/dafny0/snapshots/Snapshots2.v1.dfy
+++ b/Test/dafny0/snapshots/Snapshots2.v1.dfy
@@ -5,15 +5,15 @@ method M()
}
method N()
- ensures P;
+ ensures P();
-predicate P
- ensures P == Q;
+predicate P()
+ ensures P() == Q();
-predicate Q
- ensures Q == R;
+predicate Q()
+ ensures Q() == R();
-predicate R
+predicate R()
{
true
}