dmd/compiler/test/fail_compilation/fail3895.d
2022-07-09 18:53:07 +02:00

13 lines
221 B
D

/*
TEST_OUTPUT:
---
fail_compilation/fail3895.d(12): Error: cannot append type `double[]` to type `float[]`
---
*/
void main() {
double[] stuff = [1.,2.,3.,4.,5.];
float[] otherStuff;
otherStuff ~= stuff;
}