diff options
Diffstat (limited to 'Test/dafny0/snapshots/Snapshots0.v0.dfy')
-rw-r--r-- | Test/dafny0/snapshots/Snapshots0.v0.dfy | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Test/dafny0/snapshots/Snapshots0.v0.dfy b/Test/dafny0/snapshots/Snapshots0.v0.dfy new file mode 100644 index 00000000..73db9f9c --- /dev/null +++ b/Test/dafny0/snapshots/Snapshots0.v0.dfy @@ -0,0 +1,8 @@ +method foo()
+{
+ bar();
+ assert false;
+}
+
+method bar()
+ ensures false;
|