summaryrefslogtreecommitdiff
path: root/Test/dafny4/Bug122.dfy
diff options
context:
space:
mode:
Diffstat (limited to 'Test/dafny4/Bug122.dfy')
-rw-r--r--Test/dafny4/Bug122.dfy17
1 files changed, 17 insertions, 0 deletions
diff --git a/Test/dafny4/Bug122.dfy b/Test/dafny4/Bug122.dfy
new file mode 100644
index 00000000..adbee30d
--- /dev/null
+++ b/Test/dafny4/Bug122.dfy
@@ -0,0 +1,17 @@
+// RUN: %dafny /compile:0 /autoTriggers:1 "%s" > "%t"
+// RUN: %diff "%s.expect" "%t"
+
+method Try (a:int)
+{
+ forall
+ ensures a == a;
+ {
+ }
+}
+
+
+
+
+
+
+