http://d.puremagic.com/issues/show_bug.cgi?id=3971
yebblies <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #23 from yebblies <[email protected]> 2012-02-03 18:46:19 EST --- (In reply to comment #22) > In DMD 2.057head this code fails still: > > > void main() { > int[3] a = [1, 2, 3]; > int[3] b = [10, 20, 30]; > auto c[] = a[] + b[]; // no identifier for declarator c[] > } > > > > void main() pure nothrow { > int[3] a = [1, 2, 2]; > int[3] b = [10, 20, 20]; > const c = a[] + b[]; // Error: Array operation a[] + b[] not implemented > } This is a different bug. Are all the other cases fixed? I know this is an old report, but the way cases are presented in the initial report make it a pain to test. The cases I've quoted above are much better. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
