[
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: | Roland Zumkeller <roland.zumkeller@g...> |
| Subject: | Explicitly referring to top-level definitions |
Hi, Is there a way to qualify identifiers explicitly so as to make them refer to top-level definitions? # type t = int;; type t = int # module A = struct type t = t end;; The type abbreviation t is cyclic Is it possible to write something like "type t = Top.t"? Best, Roland