2008-05-30 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git] / gcc / testsuite / g++.dg / ext / utf-gnuxx98.C
blobfc8068b7e99f6dcb3d2019f3bd32a874db2a709b
1 /* Contributed by Kris Van Hees <kris.van.hees@oracle.com> */
2 /* Expected errors for char16_t/char32_t in gnu++98. */
3 /* Ensure u and U prefixes are parsed as separate tokens in gnu++98. */
4 /* { dg-do compile } */
5 /* { dg-options "-std=gnu++98" } */
7 const static char16_t   c0      = 'a';  /* { dg-error "not name a type" } */
8 const static char32_t   c1      = 'a';  /* { dg-error "not name a type" } */
10 const unsigned short    c2      = u'a'; /* { dg-error "not declared" } */
11         /* { dg-error "expected ',' or ';'" "" { target *-*-* } 10 } */
12 const unsigned long     c3      = U'a'; /* { dg-error "not declared" } */
13         /* { dg-error "expected ',' or ';'" "" { target *-*-* } 12 } */
15 #define u       1 +
16 #define U       2 +
18 const unsigned short    c5      = u'a';
19 const unsigned long     c6      = U'a';
21 #undef u
22 #undef U
23 #define u       "a"
24 #define U       "b"
26 const void              *s0     = u"a";
27 const void              *s1     = U"a";
29 int main () {}