summaryrefslogtreecommitdiff
path: root/Test/dafny3/InductionVsCoinduction.dfy
diff options
context:
space:
mode:
Diffstat (limited to 'Test/dafny3/InductionVsCoinduction.dfy')
-rw-r--r--Test/dafny3/InductionVsCoinduction.dfy2
1 files changed, 1 insertions, 1 deletions
diff --git a/Test/dafny3/InductionVsCoinduction.dfy b/Test/dafny3/InductionVsCoinduction.dfy
index 47754036..89fa6cc8 100644
--- a/Test/dafny3/InductionVsCoinduction.dfy
+++ b/Test/dafny3/InductionVsCoinduction.dfy
@@ -3,7 +3,7 @@
// A definition of a co-inductive datatype Stream, whose values are possibly
// infinite lists.
-codatatype Stream<T> = SNil | SCons(head: T, tail: Stream<T>);
+codatatype Stream<T> = SNil | SCons(head: T, tail: Stream<T>)
/*
A function that returns a stream consisting of all integers upwards of n.