summaryrefslogtreecommitdiff
path: root/Test/dafny3/SimpleCoinduction.dfy
diff options
context:
space:
mode:
Diffstat (limited to 'Test/dafny3/SimpleCoinduction.dfy')
-rw-r--r--Test/dafny3/SimpleCoinduction.dfy4
1 files changed, 2 insertions, 2 deletions
diff --git a/Test/dafny3/SimpleCoinduction.dfy b/Test/dafny3/SimpleCoinduction.dfy
index 00e598c3..6b6d0a9d 100644
--- a/Test/dafny3/SimpleCoinduction.dfy
+++ b/Test/dafny3/SimpleCoinduction.dfy
@@ -1,8 +1,8 @@
// RUN: %dafny /compile:0 /dprint:"%t.dprint" "%s" > "%t"
// RUN: %diff "%s.expect" "%t"
-codatatype Stream<T> = Cons(head: T, tail: Stream);
-codatatype IList<T> = Nil | ICons(head: T, tail: IList);
+codatatype Stream<T> = Cons(head: T, tail: Stream)
+codatatype IList<T> = Nil | ICons(head: T, tail: IList)
// -----------------------------------------------------------------------