|
Archives
D Programming
DD.gnu digitalmars.D digitalmars.D.bugs digitalmars.D.dtl digitalmars.D.ide 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 electronics |
digitalmars.D - D Bugzilla issue + bugreport
I'd like to submit two compiler bugs (1 crash and 1 internal assertion =
failure),
but I have a problem with logging into bugzilla. I registered but got no=
=
e-mail
sent to me. I tried to recover password but got the following message:
The e-mail address you entered (korDen) didn't pass our syntax checking =
=
for a
legal email address. A legal address must contain exactly one ' ', and a=
t =
least
one '.' after the . It must also not contain any of these special =
characters:
\ ( ) & < > , ; : " [ ], or any whitespace.
Could anyone submit them for me?
crash1.d:
module crash;
extern (Windows) {
int func(PRPC_RUNDOWN);
alias void function(void*) PRPC_RUNDOWN;
}
dmd crash1.d
Assertion failure: 't->deco' on line 597 in file 'mtype.c'
abnormal program termination
DMD2.012 and DMD2.013 affected.
crash2.d:
struct Number
{
public int value;
static Number opCall(int value)
{
Number n =3D void;
n.value =3D value;
return n;
}
}
class Crash
{
Number number =3D Number(0);
}
crashes the compiler. All versions that I tested so far are affected.
Apr 27 2008
On 27/04/2008, Koroskin Denis <2korden gmail.com> wrote:The e-mail address you entered (korDen) didn't pass our syntax checking for a legal email address. A legal address must contain exactly one ' ', and at least one '.' after the . Apr 27 2008
On Sun, 27 Apr 2008 15:13:09 +0400, Janice Caron <caron800 googlemail.com> wrote:On 27/04/2008, Koroskin Denis <2korden gmail.com> wrote:The e-mail address you entered (korDen) didn't pass our syntax checking for a legal email address. A legal address must contain exactly one ' ', and at least one '.' after the . Apr 27 2008
On 27/04/2008, Koroskin Denis <2korden gmail.com> wrote:Oh, I'm sorry. It asked me for a login name and I misunderstood it. Thank you. Apr 27 2008
On Sun, 27 Apr 2008 14:28:25 +0400, "Koroskin Denis" <2korden gmail.com> wrote: [snip] Apr 27 2008
|