MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / diag12312.d
blob307c6be1d09cd22306a8759b304b0ddd5ef736fd
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/diag12312.d(10): Error: variable `diag12312.main.arr` of type `void[16]` does not have a default initializer
5 fail_compilation/diag12312.d(15): Error: variable `diag12312.bug1176.v` of type `void[1]` does not have a default initializer
6 ---
7 */
8 void main()
10 void[16] arr;
13 void bug1176()
15 void[1] v;