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