Thread overview
Bug
Sep 20, 2002
Russell Lewis
Sep 21, 2002
Walter
Sep 22, 2002
Burton Radons
Sep 22, 2002
Walter
September 20, 2002
The following source:
  struct MyType {}
  int main()
  {
        alias MyType*[] Hack;
        MyType*[]* var = new Hack;
        return 0;
  }

Crashes DLI (D-Linux port) with the following error:
  assertion failure "arguments && arguments->dim" at expression.cpp:1329

September 21, 2002
Got it!


September 22, 2002
Russell Lewis wrote:
> The following source:
>   struct MyType {}
>   int main()
>   {
>         alias MyType*[] Hack;
>         MyType*[]* var = new Hack;
>         return 0;
>   }
> 
> Crashes DLI (D-Linux port) with the following error:
>   assertion failure "arguments && arguments->dim" at expression.cpp:1329

Walter's fault.  "new Hack [1]" should be right.

September 22, 2002
"Burton Radons" <loth@users.sourceforge.net> wrote in message news:aml0s8$2d71$1@digitaldaemon.com...
> Walter's fault.

Not again <g>.