|
Archives
D Programming
DD.gnu digitalmars.D digitalmars.D.bugs digitalmars.D.dtl digitalmars.D.dwt digitalmars.D.announce digitalmars.D.learn digitalmars.D.debugger C/C++ Programming
c++c++.announce c++.atl c++.beta c++.chat c++.command-line c++.dos c++.dos.16-bits c++.dos.32-bits c++.idde c++.mfc c++.rtl c++.stl c++.stl.hp c++.stl.port c++.stl.sgi c++.stlsoft c++.windows c++.windows.16-bits c++.windows.32-bits c++.wxwindows digitalmars.empire digitalmars.DMDScript |
D.gnu - Multiple inheritance bug?
I think this a bug? The sample code throws 'AssertError Failure
/gcc/gc-3.3.3-3/gcc/d/phobos/internal/gc/gcx.d(1718)' when it's run. It
works fine for only a single level of inheritance.
class A : B
{
}
class B : C
{
}
class C
{
}
int main (char[][] args)
{
A a = new A();
return 0;
}
I'm using gdc on windows using cygwin 1.5.12-1 release.
Dec 04 2004
On Sat, 04 Dec 2004 16:24:43 +0000, Russell Wilkins <rwilkins grovestarsoftware.com> wrote: Dec 05 2004
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Added to DStress as http://svn.kuehne.cn/dstress/run/class_08.d http://svn.kuehne.cn/dstress/run/class_09.d http://svn.kuehne.cn/dstress/run/class_10.d FYI gdc-0.8 doesn't produce an error on Linux. Thomas Russell Wilkins schrieb am Sat, 04 Dec 2004 16:24:43 +0000: Dec 05 2004
|