December 27, 2001
D seems to dislike typedefs. The following works:

    alias void* HANDLE;
    HANDLE cin, cout, cerr;

...while the following crashes the compiler:

    typedef void* HANDLE;
    HANDLE cin, cout, cerr;


December 27, 2001
2Walter: by the way, this could be cause of compiler
crash on the module I've sent you...