June 10, 2004
The following code is excepted by dmd without any warning/error. Naturaly gcc rejects the code:

class DestBug{
    ~this(){printf("a\n");}
    ~this(){printf("b\n");}
}