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
8const unsigned short	c2	= u'a';
9const unsigned long	c3	= U'a';
10const void		*s0	= u"a";
11const void		*s1	= U"a";
12
13int main () {}
14