http://d.puremagic.com/issues/show_bug.cgi?id=10890
[email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from [email protected] 2013-08-25 14:13:51 PDT --- One workaround is to define a public alias inside your struct: struct Foo(T...) { alias TemplateArgs = T; ... } alias F1 = Foo!(int, float, 5); alias F1_parms = F1.TemplateArgs; It's not as pretty, but it works. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
