summaryrefslogtreecommitdiff
path: root/Test/dafny0/snapshots/Snapshots4.v1.dfy
diff options
context:
space:
mode:
authorGravatar wuestholz <unknown>2014-07-10 13:48:11 +0200
committerGravatar wuestholz <unknown>2014-07-10 13:48:11 +0200
commit129ab22811996b4b46cfbcc6eb3f4b97a95f5416 (patch)
tree78395d43c22b18f7f26cf5f78a295ba6c1c5dd67 /Test/dafny0/snapshots/Snapshots4.v1.dfy
parent69913ba9c60a9718c83ac1fc2454561701e01316 (diff)
Added more tests for the more advanced verification result caching.
Diffstat (limited to 'Test/dafny0/snapshots/Snapshots4.v1.dfy')
-rw-r--r--Test/dafny0/snapshots/Snapshots4.v1.dfy12
1 files changed, 12 insertions, 0 deletions
diff --git a/Test/dafny0/snapshots/Snapshots4.v1.dfy b/Test/dafny0/snapshots/Snapshots4.v1.dfy
new file mode 100644
index 00000000..cf9ae753
--- /dev/null
+++ b/Test/dafny0/snapshots/Snapshots4.v1.dfy
@@ -0,0 +1,12 @@
+method M()
+{
+ if (*)
+ {
+ assert 1 != 1; // error
+ }
+ else
+ {
+ assert 0 == 0;
+ assert 2 != 2; // error
+ }
+}