Browse thread
[Caml-list] Cyclic ?!
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
| Date: | -- (:) |
| From: | Oleg <oleg_inconnu@m...> |
| Subject: | [Caml-list] Cyclic ?! |
Hi
I'm puzzled by the following compiler behavior:
If I define bin_tree as
type 'a bin_tree =
Empty
| Node of 'a bin_tree * 'a * 'a bin_tree
the compiler accepts it. OTOH if I define it as
type 'a bin_tree = ('a bin_tree * 'a * 'a bin_tree) option
It gives an error: "The type abbreviation bin_tree is cyclic".
Why??? And what's the difference between the two, really?
Thanks
Oleg
-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners