1 /* Contributed by Kris Van Hees <kris.van.hees@oracle.com> */
2 /* Expected errors for char16_t/char32_t in default std. */
3 /* Ensure u and U prefixes are parsed as separate tokens in default std. */
4 /* { dg-do compile } */
5 /* { dg-options "-std=c++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 const unsigned long c3 = U'a'; /* { dg-error "not declared" } */
16 const unsigned short c4 = u'a';
17 const unsigned long c5 = U'a';
24 const void *s0 = u"a";
25 const void *s1 = U"a";