Thread overview
[Issue 2548] Array ops that return value to a new array should work.
May 24, 2014
Damian
Jul 30, 2015
John Colvin
Jul 30, 2015
Jesse Phillips
Dec 17, 2022
Iain Buclaw
May 24, 2014
https://issues.dlang.org/show_bug.cgi?id=2548

Damian <damianday@hotmail.co.uk> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |damianday@hotmail.co.uk
         Resolution|---                         |FIXED

--- Comment #2 from Damian <damianday@hotmail.co.uk> ---
double[] foo = [1.0,2,3,4,5].dup;
double[] bar = [6.0,7,8,9,10].dup;
auto baz = foo[] ~ bar[];

This works fine now in 2.065

--
July 30, 2015
https://issues.dlang.org/show_bug.cgi?id=2548

John Colvin <john.loughran.colvin@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |john.loughran.colvin@gmail.
                   |                            |com
         Resolution|FIXED                       |WONTFIX

--- Comment #3 from John Colvin <john.loughran.colvin@gmail.com> ---
This is a wontfix, not a fixed. Damian's example is different and AFAIK always worked.

--
July 30, 2015
https://issues.dlang.org/show_bug.cgi?id=2548

Jesse Phillips <Jesse.K.Phillips+D@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|WONTFIX                     |---

--- Comment #4 from Jesse Phillips <Jesse.K.Phillips+D@gmail.com> ---
Since Damian closed this as fixed due to a different code example, I'm going to reopen as no D developer has said this won't get implemented.

--
December 17, 2022
https://issues.dlang.org/show_bug.cgi?id=2548

Iain Buclaw <ibuclaw@gdcproject.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P2                          |P4

--