[PR c++/84702] ICE with default tmpl arg of overload set
[official-gcc.git] / gcc / testsuite / g++.dg / ext / utf-gnuxx0x.C
blob221ccf0934b801330d52cf98252c2bd194d4b509
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 } } */
5 #define u       L
6 #define U       L
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";
13 int main () {}