digitalmars.D.bugs - dmd compiles multiple destructors
- Thomas Kuehne (6/6) Jun 10 2004 The following code is excepted by dmd without any warning/error. Natural...
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