summaryrefslogtreecommitdiff
path: root/Test/dafny4/Bug63.dfy
diff options
context:
space:
mode:
Diffstat (limited to 'Test/dafny4/Bug63.dfy')
-rw-r--r--Test/dafny4/Bug63.dfy13
1 files changed, 13 insertions, 0 deletions
diff --git a/Test/dafny4/Bug63.dfy b/Test/dafny4/Bug63.dfy
new file mode 100644
index 00000000..86aad232
--- /dev/null
+++ b/Test/dafny4/Bug63.dfy
@@ -0,0 +1,13 @@
+// RUN: %dafny /compile:0 "%s" > "%t"
+// RUN: %diff "%s.expect" "%t"
+
+method M()
+ modifies set o: object | true
+{
+}
+
+method Client()
+{
+ assume forall o: object :: o != null ==> false;
+ M();
+} \ No newline at end of file