diff options
Diffstat (limited to 'Test/dafny0/snapshots/Snapshots2.v0.dfy')
-rw-r--r-- | Test/dafny0/snapshots/Snapshots2.v0.dfy | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Test/dafny0/snapshots/Snapshots2.v0.dfy b/Test/dafny0/snapshots/Snapshots2.v0.dfy new file mode 100644 index 00000000..37b9982b --- /dev/null +++ b/Test/dafny0/snapshots/Snapshots2.v0.dfy @@ -0,0 +1,19 @@ +method M()
+{
+ N();
+ assert false;
+}
+
+method N()
+ ensures P;
+
+predicate P
+ ensures P == Q;
+
+predicate Q
+ ensures Q == R;
+
+predicate R
+{
+ false
+}
|