1 /* Contributed by Kris Van Hees <kris.van.hees@oracle.com> */
2 /* Test unsupported concatenation of char16_t/char32_t* string literals. */
3 /* { dg-do compile } */
4 /* { dg-options "-std=gnu99" } */
8 void *s2
= u
"a" U
"b"; /* { dg-error "non-standard concatenation" } */
9 void *s3
= U
"a" u
"b"; /* { dg-error "non-standard concatenation" } */
10 void *s4
= u
"a" L
"b"; /* { dg-error "non-standard concatenation" } */
11 void *s5
= L
"a" u
"b"; /* { dg-error "non-standard concatenation" } */
15 void *s9
= U
"a" L
"b"; /* { dg-error "non-standard concatenation" } */
16 void *sa
= L
"a" U
"b"; /* { dg-error "non-standard concatenation" } */