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

           Summary: Inheriting class template with subclass field crashes
                    DMD
           Product: D
           Version: D2
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: [email protected]
        ReportedBy: [email protected]


--- Comment #0 from Lu�s Marques <[email protected]> 2013-08-24 19:54:40 PDT 
---
The following pruned test case crashes DMD:

    class T() { }

    class A : T!(A.foo) { }

The original goal was something like this, which also crashes:

    class T(E) {}

    class A : T!(A.I)
    {
        interface I { }
    }

as opposed to the following, which works:

    class T(E) { }

    class A : T!(A) { }

or the following, which also works:

    class T(E) { }

    interface I { }

    class A : T!(I) { }

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

Reply via email to