November 14, 2005
Getting error:

Internal error: ..\ztc\cgcs.c 354

with this code:


int main( char[][] args )
{
  int i;
  ubyte[4] ub;
  ub[] = cast(ubyte[4]) &i;
  return 0;
}

greetings,

Lukas
November 18, 2005
Lukas Pinkowski schrieb am 2005-11-14:
> Getting error:
>
> Internal error: ..\ztc\cgcs.c 354
>
> with this code:
>
>
> int main( char[][] args )
> {
>    int i;
>    ubyte[4] ub;
>    ub[] = cast(ubyte[4]) &i;
>    return 0;
> }
>
> greetings,
>
> Lukas

Added to DStress as http://dstress.kuehne.cn/run/b/bug_cgcs_354_A.d http://dstress.kuehne.cn/run/b/bug_cgcs_354_B.d

Thomas