www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 4050] New: [CTFE] array struct member slice update

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

           Summary: [CTFE] array struct member slice update
           Product: D
           Version: future
          Platform: x86
        OS/Version: Windows
            Status: NEW
          Keywords: rejects-valid
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody puremagic.com
        ReportedBy: bearophile_hugs eml.cc



(Not tested with the latest bug fixes, so this can be already fixed)


struct Foo {
    int[1] data;
}
int bar() {
    Foo f;
    f.data = [1];
    return 0;
}
enum int _ = bar();
void main() {}


dmd 2.042 gives:

test.d(6): Error: Slice operation f.data[] = [1] cannot be evaluated at compile
time
test.d(9): Error: cannot evaluate bar() at compile time
test.d(9): Error: cannot evaluate bar() at compile time

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Apr 02 2010
parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=4050


Don <clugdbug yahoo.com.au> changed:

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



Fixed.
D1:
https://github.com/D-Programming-Language/dmd/commit/ef2a0f1da10331c4de102ca3e029ea1c1c1a46bf

D2:
https://github.com/D-Programming-Language/dmd/commit/0219a5f0dcc88076759a4c472582954d0fb804b0

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