MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / diag7998.d
bloba245b4061f1d4ada29b9208a572cddbc51510fd0
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/diag7998.d(10): Error: static assert: "abcxe"
5 ---
6 */
8 module diag7998;
10 static assert(false, "abc" ~['x'] ~ "e");