T[] toArray(T)(T[] values...) { return values.dup; } int[] array = toArray(1.0,2.0,3.0); ---- Error: cannot implicitly convert expression ([1,2,3]) of type double[] to int[] Only applies in 2.038 and later. Behaviour in D2.037 was different; old behaviour still happens in D1.
https://github.com/D-Programming-Language/dmd/pull/680
*** Issue 7434 has been marked as a duplicate of this issue. ***
Commit pushed to master at https://github.com/D-Programming-Language/dmd https://github.com/D-Programming-Language/dmd/commit/67ba76638878f0752f9875d22c23bf4e034d2b89 Merge pull request #680 from yebblies/issue3812 Issue 3812 - Missing line number for implicit cast of variadic function to array
Commit pushed to dmd-1.x at https://github.com/D-Programming-Language/dmd https://github.com/D-Programming-Language/dmd/commit/24dd30b16be51534076f79f2e2ba7b786b7a1b10 fix Issue 3812 - Missing line number for implicit cast of variadic function to array