www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 11193] New: [ICE] String template argument mixed with variadic template arguments causes ICE

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

           Summary: [ICE] String template argument mixed with variadic
                    template arguments causes ICE
           Product: D
           Version: D2
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: major
          Priority: P2
         Component: DMD
        AssignedTo: nobody puremagic.com
        ReportedBy: monkeyworks12 hotmail.com



void test(string str, A...)(typeof([A]) a)
{ 
}

void main(string[] args) 
{
    test!("a b c") = [1, 2, 3];
}

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