annotate gcc/testsuite/gcc.dg/utf-badconcat2.c @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 /* Test unsupported concatenation of UTF-8 string literals. */
kono
parents:
diff changeset
2 /* { dg-do compile } */
kono
parents:
diff changeset
3 /* { dg-options "-std=gnu99" } */
kono
parents:
diff changeset
4
kono
parents:
diff changeset
5 void *s0 = u8"a" "b";
kono
parents:
diff changeset
6 void *s1 = "a" u8"b";
kono
parents:
diff changeset
7 void *s2 = u8"a" u8"b";
kono
parents:
diff changeset
8 void *s3 = u8"a" u"b"; /* { dg-error "non-standard concatenation" } */
kono
parents:
diff changeset
9 void *s4 = u"a" u8"b"; /* { dg-error "non-standard concatenation" } */
kono
parents:
diff changeset
10 void *s5 = u8"a" U"b"; /* { dg-error "non-standard concatenation" } */
kono
parents:
diff changeset
11 void *s6 = U"a" u8"b"; /* { dg-error "non-standard concatenation" } */
kono
parents:
diff changeset
12 void *s7 = u8"a" L"b"; /* { dg-error "non-standard concatenation" } */
kono
parents:
diff changeset
13 void *s8 = L"a" u8"b"; /* { dg-error "non-standard concatenation" } */
kono
parents:
diff changeset
14
kono
parents:
diff changeset
15 int main () {}