www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 4431] New: Template favors alias parameter for struct

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

           Summary: Template favors alias parameter for struct
           Product: D
           Version: D2
          Platform: Other
        OS/Version: Windows
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody puremagic.com
        ReportedBy: simen.kjaras gmail.com



PDT ---
template isType( T ) {
    enum isType = true;
}

template isType( alias T ) {
    enum isType = false;
}

struct S {
    alias int foo;
}

static assert( isType!S ); // fails

Testing shows that the latter isType definition is chosen.

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