www.digitalmars.com         C & C++   DMDScript  

D - BUG: Deriving from Error

The following code doesn't compile:

class MyError : Error
{ this() { super(""); } }
void main() {}

The linker complains it can not find symbol __Class_object_Error).
Compiling it within object.d doesn't resolve the problem: it only enlarge
the list (ClassInfos, TypeInfos, Exceptions, etc.).
Jul 12 2003