Browse thread
Why is this allowed?
[
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: | bluestorm <bluestorm.dylc@g...> |
| Subject: | Re: [Caml-list] Why is this allowed? |
It is actually not the case that type structure items can be shadowed :
# module A = struct type t = int;; type t = int end;;
Error: Multiple definition of the type name t.
Names must be unique in a given structure or signature.