diff options
author | qunyanm <unknown> | 2015-11-17 13:13:40 -0800 |
---|---|---|
committer | qunyanm <unknown> | 2015-11-17 13:13:40 -0800 |
commit | 2cde0265070d65f738b9ee236f7246e765536f08 (patch) | |
tree | a73a6005d3f1367af628a21e0c5566e5332e2414 /Test | |
parent | 962052e98513945981e3fed49e374642d1ed4aa0 (diff) |
Fix issue 107. Instead of writing out StaticReceiverExpr as null valued
LiteralExpr, write out its type instead.
Diffstat (limited to 'Test')
-rw-r--r-- | Test/dafny4/Bug107.dfy | 16 | ||||
-rw-r--r-- | Test/dafny4/Bug107.dfy.expect | 6 |
2 files changed, 22 insertions, 0 deletions
diff --git a/Test/dafny4/Bug107.dfy b/Test/dafny4/Bug107.dfy new file mode 100644 index 00000000..56965d92 --- /dev/null +++ b/Test/dafny4/Bug107.dfy @@ -0,0 +1,16 @@ +// RUN: %dafny /compile:3 "%s" > "%t"
+// RUN: %diff "%s.expect" "%t"
+
+method Main()
+{
+ var f := Inc;
+ print(f(4));
+}
+
+function method Inc(x: int): int
+{
+ x + 2
+}
+
+
+
diff --git a/Test/dafny4/Bug107.dfy.expect b/Test/dafny4/Bug107.dfy.expect new file mode 100644 index 00000000..eaa3aa54 --- /dev/null +++ b/Test/dafny4/Bug107.dfy.expect @@ -0,0 +1,6 @@ +
+Dafny program verifier finished with 3 verified, 0 errors
+Program compiled successfully
+Running...
+
+6
\ No newline at end of file |