summaryrefslogtreecommitdiff
path: root/Test/snapshots/Snapshots28.v0.bpl
diff options
context:
space:
mode:
authorGravatar wuestholz <unknown>2014-10-19 19:14:47 +0200
committerGravatar wuestholz <unknown>2014-10-19 19:14:47 +0200
commit92aa9a93dd286f10cebd2e10e2bdd2065d51b1aa (patch)
tree49eabf7246f4aab6cafaaa7d57e99e1e65b0dfdf /Test/snapshots/Snapshots28.v0.bpl
parent8f2ef8a079ea77caead0a62f5bec8ce34181d907 (diff)
Added more tests for the verification result caching.
Diffstat (limited to 'Test/snapshots/Snapshots28.v0.bpl')
-rw-r--r--Test/snapshots/Snapshots28.v0.bpl15
1 files changed, 15 insertions, 0 deletions
diff --git a/Test/snapshots/Snapshots28.v0.bpl b/Test/snapshots/Snapshots28.v0.bpl
new file mode 100644
index 00000000..b74b5013
--- /dev/null
+++ b/Test/snapshots/Snapshots28.v0.bpl
@@ -0,0 +1,15 @@
+procedure {:checksum "0"} M();
+
+implementation {:id "M"} {:checksum "1"} M()
+{
+ var x: int;
+
+ assume x == 0;
+
+ while (*)
+ {
+ }
+
+ assert 0 == 0;
+ assert x == 0;
+}