http://d.puremagic.com/issues/show_bug.cgi?id=6435

           Summary: Regression (2.054) Cannot append to a string member of
                    a struct in CTFE
           Product: D
           Version: D2
          Platform: Other
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nob...@puremagic.com
        ReportedBy: samu...@voliacable.com


--- Comment #0 from Max Samukha <samu...@voliacable.com> 2011-08-03 11:19:10 
PDT ---
struct S
{
    string bar;
}

int foo()
{
    S s;
    s.bar = "one"; // compiles if this is commented out
    s.bar ~= "two";
    return 0;
}

auto x = foo();

void main()
{       
}

Error: s.bar ~= "two" cannot be evaluated at compile time

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

Reply via email to