MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / ice20264.d
blob0d697e22c9f30d3f5543aaa575717f28f62413cd
1 /*
2 DISABLED: freebsd32 linux32 osx32 win32
3 TEST_OUTPUT:
4 ---
5 fail_compilation/ice20264.d(12): Error: `cast(__vector(float[4]))a` is not an lvalue and cannot be modified
6 ---
7 */
9 void foo(float *a)
11 alias float4 = __vector(float[4]);
12 cast(float4)(a) = 1.0f;