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 } */
4 /* { dg-options "-std=gnu++0x" } */
9 const unsigned short c2 = u'a';
10 const unsigned long c3 = U'a';
11 const void *s0 = u"a";
12 const void *s1 = U"a";