]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/c11-uni-string-2.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / c11-uni-string-2.c
CommitLineData
1bec9d5f 1/* Test Unicode strings in C11. Test constraint. */
a48e3dd1 2/* { dg-do compile } */
1bec9d5f 3/* { dg-options "-std=c11 -pedantic-errors" } */
a48e3dd1
JM
4
5const void *p1 = L"a" u8"b"; /* { dg-error "concatenation" } */
6const void *p2 = L"a" "b" u8"c"; /* { dg-error "concatenation" } */
7const void *p3 = u8"a" L"b"; /* { dg-error "concatenation" } */
8const void *p4 = u8"a" "b" L"c"; /* { dg-error "concatenation" } */