digitalmars.D.bugs - [Issue 7680] New: template specialization bug
- d-bugmail puremagic.com (35/35) Mar 10 2012 http://d.puremagic.com/issues/show_bug.cgi?id=7680
http://d.puremagic.com/issues/show_bug.cgi?id=7680 Summary: template specialization bug Product: D Version: unspecified Platform: All OS/Version: All Status: NEW Severity: normal Priority: P2 Component: DMD AssignedTo: nobody puremagic.com ReportedBy: dawg dawgfoto.de cat > bug.d << CODE struct Bar(T) {} template Foo26(T:Bar!(const T)) { pragma(msg, "const", T); } template Foo26(T:Bar!(T)) { pragma(msg, "mod", T); } void main() { alias Foo26!(Bar!int) foo; } CODE dmd -c bug -------- I'm not sure whether Bar!int should match Bar!(const T) in the first place. However if it does it must be a MATCHconst. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Mar 10 2012