summaryrefslogtreecommitdiff
path: root/Test/dafny4/Bug79.dfy
diff options
context:
space:
mode:
Diffstat (limited to 'Test/dafny4/Bug79.dfy')
-rw-r--r--Test/dafny4/Bug79.dfy10
1 files changed, 10 insertions, 0 deletions
diff --git a/Test/dafny4/Bug79.dfy b/Test/dafny4/Bug79.dfy
new file mode 100644
index 00000000..49f2421b
--- /dev/null
+++ b/Test/dafny4/Bug79.dfy
@@ -0,0 +1,10 @@
+// RUN: %dafny /compile:0 "%s" > "%t"
+// RUN: %diff "%s.expect" "%t"
+
+function foo(s:int) : (int, int)
+
+function bar(s:int) : bool
+{
+ var (x, rest) := foo(s);
+ x > 0
+} \ No newline at end of file