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

           Summary: Template recursion causes Segfault
           Product: D
           Version: unspecified
          Platform: x86_64
        OS/Version: Linux
            Status: NEW
          Severity: major
          Priority: P2
         Component: DMD
        AssignedTo: [email protected]
        ReportedBy: [email protected]


--- Comment #0 from [email protected] 2013-09-22 01:47:37 PDT ---
auto func(A, B)(A a, B b) if (is(func!(A, B))) {
    return a + b;
}

void main() {
    func!(int,int);
}


Causes a segfault, assumed from some kind of recursion.

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

Reply via email to