MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / diag9765.d
blobfa629a228e8254e7d45c7078751229d0e5371b70
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/diag9765.d(9): Error: cannot implicitly convert expression `'x'` of type `char` to `char[]`
5 ---
6 */
8 struct S9765 { char[] x; }
9 const S9765 s9765 = S9765('x');
10 const char s9765b = s9765.x;