http://d.puremagic.com/issues/show_bug.cgi?id=4886
[email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from [email protected] 2010-09-19 17:44:54 PDT --- Reduced test case: template Foo(T...) { int[T.length] x; } static assert(Foo!(1, 2, 3).x.length == 3); void main() {} A workaround: template Foo(T...) { int[cast(int)T.length] x; } static assert(Foo!(1, 2, 3).x.length == 3); void main() {} -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
