d: Merge upstream dmd, druntime 4c18eed967, phobos d945686a4.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail3895.d
blob1aafd96947c65f06987ceb5c642ad58cf4a982e1
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail3895.d(12): Error: cannot append type `double[]` to type `float[]`
5 ---
6 */
9 void main() {
10 double[] stuff = [1.,2.,3.,4.,5.];
11 float[] otherStuff;
12 otherStuff ~= stuff;