MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / diag13215.d
blob3ae50c9ae1c245cc8b59fe8f4040d7fec77b1101
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/diag13215.d(11): Error: cannot implicitly convert expression `[1, 2, 3]` of type `int[]` to `immutable(uint[2])[]`
5 ---
6 */
8 enum uint N = 10;
9 immutable uint[2][3] arr2;
10 shared static this() {
11 arr2 = [1, 2, 3];