diff options
author | leino <unknown> | 2015-10-22 21:46:42 -0700 |
---|---|---|
committer | leino <unknown> | 2015-10-22 21:46:42 -0700 |
commit | cb760d823372f0d6a45469cb7840cad9df023232 (patch) | |
tree | ff4c3a7112591302ffcd66a6e373282c8c7710ff /Test/dafny4 | |
parent | 88f5ac86bda56381f81be032a0011e34aeca50a8 (diff) |
Fixed bug introduced in changeset 7ebdf9cd4154
Diffstat (limited to 'Test/dafny4')
-rw-r--r-- | Test/dafny4/Regression1.dfy | 9 | ||||
-rw-r--r-- | Test/dafny4/Regression1.dfy.expect | 2 |
2 files changed, 11 insertions, 0 deletions
diff --git a/Test/dafny4/Regression1.dfy b/Test/dafny4/Regression1.dfy new file mode 100644 index 00000000..ebd8cf6d --- /dev/null +++ b/Test/dafny4/Regression1.dfy @@ -0,0 +1,9 @@ +// RUN: %dafny /compile:0 "%s" > "%t"
+// RUN: %diff "%s.expect" "%t"
+
+ghost method M() {
+ var x :=
+// In the following line, why are the range and term copied in Substitute?
+// var loo := 100; map y | 0 <= y < 100 :: y+1;
+ var loo := 100; imap y: int | true :: 3;
+}
diff --git a/Test/dafny4/Regression1.dfy.expect b/Test/dafny4/Regression1.dfy.expect new file mode 100644 index 00000000..069e7767 --- /dev/null +++ b/Test/dafny4/Regression1.dfy.expect @@ -0,0 +1,2 @@ +
+Dafny program verifier finished with 2 verified, 0 errors
|