http://d.puremagic.com/issues/show_bug.cgi?id=9359
[email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #2 from [email protected] 2013-01-20 14:35:15 PST --- Normally you do it like this: void main() { int a = 0; int[] b = [a, a]; } Or even: void main() { int a = 0; int[] b = (int[]).init ~ a ~ a; } -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
