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 } } */
4 
5 #define u	L
6 #define U	L
7 
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";
12 
main()13 int main () {}
14