Browse thread
Re: [Caml-list] Polymorphic variant difference...
- David Allsopp
[
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: | David Allsopp <dra-news@m...> |
| Subject: | Re: [Caml-list] Polymorphic variant difference... |
> That's maybe just because of a typo (you wrote `A for `B below) ? > > This seems to works with 3.09: > > # module M : sig type t = [ `A | `B ] end = struct type t' = [`A] type t > = [`B | t' ] end;; > module M : sig type t = [ `A | `B ] end > <blush> my bad! It was indeed a typo... David