digitalmars.D.bugs - dmd compiles multiple destructors
- "Thomas Kuehne" <thomas kuehne.ThisIsSpam.cn> Jun 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");}
}
Jun 10 2004








"Thomas Kuehne" <thomas kuehne.ThisIsSpam.cn>