MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / diag6796.d
blobc8be130fd5f41ac111be26a170cfbc5f729e2ba5
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/diag6796.d(11): Error: cannot implicitly convert expression `0` of type `int` to `int[]`
5 fail_compilation/diag6796.d(11): Error: cannot implicitly convert expression `1` of type `int` to `int[]`
6 ---
7 */
9 void main()
11 enum int[][] array = [0, 1];
12 array[0] *= 10;