summaryrefslogtreecommitdiff
path: root/Test/dafny4/Bug107.dfy
diff options
context:
space:
mode:
Diffstat (limited to 'Test/dafny4/Bug107.dfy')
-rw-r--r--Test/dafny4/Bug107.dfy16
1 files changed, 16 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
+}
+
+
+