Thread overview
[Issue 4108] New: [ICE] __traits(isStaticArray) on empty static array
Apr 28, 2010
Walter Bright
[Issue 4108] ICE(cod2.c): zero-length static array in function call
Apr 28, 2010
Walter Bright
May 06, 2010
Don
April 21, 2010
http://d.puremagic.com/issues/show_bug.cgi?id=4108

           Summary: [ICE] __traits(isStaticArray) on empty static array
           Product: D
           Version: future
          Platform: x86
        OS/Version: Windows
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody@puremagic.com
        ReportedBy: bearophile_hugs@eml.cc


--- Comment #0 from bearophile_hugs@eml.cc 2010-04-21 13:45:12 PDT ---
This is D2 code:


void foo(T)(T) {
    bool b = __traits(isStaticArray, T);
}
void main() {
    int[0] arr;
    foo(arr);
}


dmd 2.043 gives at runtime:
Internal error: ..\ztc\cod2.c 4333

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
April 28, 2010
http://d.puremagic.com/issues/show_bug.cgi?id=4108


Walter Bright <bugzilla@digitalmars.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bugzilla@digitalmars.com


--- Comment #1 from Walter Bright <bugzilla@digitalmars.com> 2010-04-27 22:37:47 PDT ---
The same error is produced by:

  void foo(int[0]);

  void main() {
    int[0] arr;
    foo(arr);
  }

It has nothing to do with __traits.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
April 28, 2010
http://d.puremagic.com/issues/show_bug.cgi?id=4108



--- Comment #2 from Walter Bright <bugzilla@digitalmars.com> 2010-04-28 15:12:54 PDT ---
changeset 459

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
May 06, 2010
http://d.puremagic.com/issues/show_bug.cgi?id=4108


Don <clugdbug@yahoo.com.au> changed:

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


--- Comment #3 from Don <clugdbug@yahoo.com.au> 2010-05-05 19:11:45 PDT ---
Fixed DMD2.044

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------