1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/diag7998.d(10): Error: static assert  "abcxe"
5 ---
6 */
7 
8 module diag7998;
9 
10 static assert(false, "abc" ~['x'] ~ "e");
11