summaryrefslogtreecommitdiff
path: root/Test/dafny3/Zip.dfy
diff options
context:
space:
mode:
Diffstat (limited to 'Test/dafny3/Zip.dfy')
-rw-r--r--Test/dafny3/Zip.dfy2
1 files changed, 1 insertions, 1 deletions
diff --git a/Test/dafny3/Zip.dfy b/Test/dafny3/Zip.dfy
index 9b1d3671..44342970 100644
--- a/Test/dafny3/Zip.dfy
+++ b/Test/dafny3/Zip.dfy
@@ -17,7 +17,7 @@ of reasoning with quantifiers in SMT solvers make the explicit calls
necessary.
*/
-codatatype Stream<T> = Cons(hd: T, tl: Stream);
+codatatype Stream<T> = Cons(hd: T, tl: Stream)
function zip(xs: Stream, ys: Stream): Stream
{ Cons(xs.hd, Cons(ys.hd, zip(xs.tl, ys.tl))) }