Thread overview
[Issue 720] New: bug in array literal parsing with append
Dec 22, 2006
d-bugmail
Dec 26, 2006
Thomas Kuehne
Apr 27, 2007
d-bugmail
December 22, 2006
http://d.puremagic.com/issues/show_bug.cgi?id=720

           Summary: bug in array literal parsing with append
           Product: D
           Version: 0.177
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Keywords: ice-on-valid-code
          Severity: normal
          Priority: P3
         Component: DMD
        AssignedTo: bugzilla@digitalmars.com
        ReportedBy: kevinbealer@gmail.com


The following code causes an assert in dmd -- it seems to have to do with deducing the type of an array literal.  If I assign the array literal to a variable, then append that to the array, it works.

The error:

dmd -ofmini mini.d
Internal error: ../ztc/cod1.c 2526

The code:

-----
void foo()
{
    int[2][] pos;
    pos ~= [1, 2];
}

int main(char[][] a)
{
    foo();
    return 0;
}
-----

Kevin


-- 

December 26, 2006
d-bugmail@puremagic.com schrieb am 2006-12-22:
> http://d.puremagic.com/issues/show_bug.cgi?id=720

> The following code causes an assert in dmd -- it seems to have to do with deducing the type of an array literal.  If I assign the array literal to a variable, then append that to the array, it works.
>
> The error:
>
> dmd -ofmini mini.d
> Internal error: ../ztc/cod1.c 2526
>
> The code:
>
> -----
> void foo()
> {
>     int[2][] pos;
>     pos ~= [1, 2];
> }
>
> int main(char[][] a)
> {
>     foo();
>     return 0;
> }
> -----

Added to DStress as http://dstress.kuehne.cn/run/o/opCatAssign_20_A.d http://dstress.kuehne.cn/run/o/opCatAssign_20_B.d

Thomas


April 27, 2007
http://d.puremagic.com/issues/show_bug.cgi?id=720


thomas-dloop@kuehne.cn changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED




------- Comment #2 from thomas-dloop@kuehne.cn  2007-04-27 12:32 -------
Fixed since DMD-1.00


--