[Issue 1527] New: mixin hides previous defined template
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Sat Sep 22 19:37:42 PDT 2007
http://d.puremagic.com/issues/show_bug.cgi?id=1527
Summary: mixin hides previous defined template
Product: D
Version: unspecified
Platform: PC
OS/Version: Windows
Status: NEW
Severity: normal
Priority: P2
Component: DMD
AssignedTo: bugzilla at digitalmars.com
ReportedBy: davidl at 126.com
int[char] v;
char m;
int d;
template toString (U,C,T:U[C])
{
char[] toString(U m,C c, T t) { return ""; }
}
char[] toString()(int k){return "";}
void main()
{
mixin toString!(int,char,int[char]); // without mixin statement,
// toString(3); compiles ok.
toString!(int,char,int[char])(d,m,v);
toString(3);
}
--
More information about the Digitalmars-d-bugs
mailing list