www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 2562] New: foreach over uninitialized array fails in CTFE

reply d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=2562

           Summary: foreach over uninitialized array fails in CTFE
           Product: D
           Version: 1.039
          Platform: PC
        OS/Version: Windows
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: bugzilla digitalmars.com
        ReportedBy: clugdbug yahoo.com.au


int foo()
{
   int [] xxx;
   foreach(q; xxx) {}
   return 1;
}

static assert(foo());
----
bug.d(8): Error: cannot evaluate foo() at compile time
bug.d(8): static assert  (foo()) is not evaluatable at compile
time

Workarounds: (1) Replace the foreach with for:
   for (int q=0; q<xxx.length; ++q) {}
(2) Initialize the array
   int [] xxx = [];

This is NOT the same as issue 1375, which appears to be fixed.


-- 
Jan 07 2009
parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=2562


clugdbug yahoo.com.au changed:

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





This works in DMD2.027 and DMD1.042.


-- 
Apr 06 2009