http://d.puremagic.com/issues/show_bug.cgi?id=7643
Summary: Whole tuple slice isn't resolved as expected
Product: D
Version: D2
Platform: All
OS/Version: All
Status: NEW
Keywords: rejects-valid
Severity: normal
Priority: P2
Component: DMD
AssignedTo: [email protected]
ReportedBy: [email protected]
--- Comment #0 from Kenji Hara <[email protected]> 2012-03-04 04:39:52 PST ---
template TypeTuple(T...){ alias T TypeTuple; }
alias TypeTuple!(long, "x", string, "y") Specs;
template U(T...) { }
alias U!( Specs[] ) U0; // Error: tuple T is used as a type
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------