October 12, 2004
Using dmd v0.102, Windows XP.

The following code crashes the compiler rather than issue an error message.

<code>
struct FOO{}
void main(){
    FOO one;
    FOO two;
    if (one < two){} // This should tell me that there
                     // is no opCmp() defined instead
                     // of crashing.
}
</code>

Error message "Internal error: ..\ztc\cod3.c 736"

-- 
Derek
Melbourne, Australia
12/10/2004 11:06:40 AM