summaryrefslogtreecommitdiff
path: root/Test/dafny4/Bug131.dfy
diff options
context:
space:
mode:
Diffstat (limited to 'Test/dafny4/Bug131.dfy')
-rw-r--r--Test/dafny4/Bug131.dfy11
1 files changed, 11 insertions, 0 deletions
diff --git a/Test/dafny4/Bug131.dfy b/Test/dafny4/Bug131.dfy
new file mode 100644
index 00000000..5d01cf59
--- /dev/null
+++ b/Test/dafny4/Bug131.dfy
@@ -0,0 +1,11 @@
+// RUN: %dafny /compile:0 "%s" > "%t"
+// RUN: %diff "%s.expect" "%t"
+
+class Cell {
+ method Test(c: Cell) {
+ assert c.F();
+ }
+}
+
+predicate F()
+