http://d.puremagic.com/issues/show_bug.cgi?id=9929
[email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from [email protected] 2013-04-13 13:57:23 PDT --- This issue is not specific to tuples. struct S{ int x; } template ID(alias T){ alias T ID; } auto foo(){ S s; auto a = ID!(s.x); // error auto x = s.x; auto b = ID!x; // ok } -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
