diff options
author | Dan Rosén <danr@chalmers.se> | 2014-07-07 17:24:46 -0700 |
---|---|---|
committer | Dan Rosén <danr@chalmers.se> | 2014-07-07 17:24:46 -0700 |
commit | 661faf59f8e1003cdbf339260d1293e8dd77f2df (patch) | |
tree | 37e11e8a86658fe4d69b38572f3b6fadd8d287c9 /Test/dafny0/snapshots/Snapshots0.v0.dfy | |
parent | 8de9fcae1a91acce9a1e59f292f05a95c81b3dbc (diff) | |
parent | 93d9965a347b1a6ad70007822f01c2b032ea5436 (diff) |
Merge
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;
|