summaryrefslogtreecommitdiff
path: root/Test/dafny0/snapshots/Snapshots3.v1.dfy
diff options
context:
space:
mode:
authorGravatar wuestholz <unknown>2014-07-09 19:17:57 +0200
committerGravatar wuestholz <unknown>2014-07-09 19:17:57 +0200
commite6994bfa0d98f4b08722c0ee805ee01f2ce0263d (patch)
tree4b2d0183bf9c246341d4bedfe16aea266ba3a419 /Test/dafny0/snapshots/Snapshots3.v1.dfy
parentb8fbc5d9e51283ddf952d6eea30e4e24e79624a9 (diff)
Worked on the more advanced verification result caching.
Diffstat (limited to 'Test/dafny0/snapshots/Snapshots3.v1.dfy')
-rw-r--r--Test/dafny0/snapshots/Snapshots3.v1.dfy11
1 files changed, 11 insertions, 0 deletions
diff --git a/Test/dafny0/snapshots/Snapshots3.v1.dfy b/Test/dafny0/snapshots/Snapshots3.v1.dfy
new file mode 100644
index 00000000..3b186318
--- /dev/null
+++ b/Test/dafny0/snapshots/Snapshots3.v1.dfy
@@ -0,0 +1,11 @@
+method M()
+{
+ if (*)
+ {
+ assert true;
+ }
+ else
+ {
+ assert 0 != 0; // error
+ }
+}