1 /* Contributed by Kris Van Hees <kris.van.hees@oracle.com> */
2 /* Test parsing of u and U prefixes when also used as macros. */
3 /* { dg-do compile { target c++11 } } */
8 const unsigned short c2 = u'a';
9 const unsigned long c3 = U'a';
10 const void *s0 = u"a";
11 const void *s1 = U"a";