digitalmars.D.bugs - dmd 0.102 crash (spooky)
- Bastiaan Veelo (17/17) Sep 23 2004 Hi,
- clayasaurus (2/27) Sep 24 2004
- Bastiaan Veelo (6/7) Sep 25 2004 :-) That is what I mean. But it seems to happen very early (during
- Tyro (2/13) Sep 25 2004
Hi,
show the exact following code to dmd 0.102 on Linux and it drops dead
instantly. Believe it or not. (Have not tried <0.102.) Swap the
definition of Foo(T1) and Bar and it works fine.
class Foo()
{
}
class Bar : Foo!()
{
}
class Foo(T1)
{
}
void main()
{
}
Bastiaan.
Sep 23 2004
on my linux machine (Mepis linux) I just get a segfault :)
Bastiaan Veelo wrote:
Hi,
show the exact following code to dmd 0.102 on Linux and it drops dead
instantly. Believe it or not. (Have not tried <0.102.) Swap the
definition of Foo(T1) and Bar and it works fine.
class Foo()
{
}
class Bar : Foo!()
{
}
class Foo(T1)
{
}
void main()
{
}
Bastiaan.
Sep 24 2004
clayasaurus wrote:on my linux machine (Mepis linux) I just get a segfault :):-) That is what I mean. But it seems to happen very early (during lexical analysis?) because it is not preceded by an error message and changing the order of definitions has a say. How is Windows doing in this regard? Bastiaan.
Sep 25 2004
Bastiaan Veelo wrote:clayasaurus wrote:No better. Results in GPF on WinXP.on my linux machine (Mepis linux) I just get a segfault :):-) That is what I mean. But it seems to happen very early (during lexical analysis?) because it is not preceded by an error message and changing the order of definitions has a say. How is Windows doing in this regard?Bastiaan.
Sep 25 2004








Tyro <ridimz_at yahoo.dot.com>