OSDN Git Service

* tree.c (lvalue_kind): Rename from lvalue_p_1, make nonstatic.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / ext / utf-gnuxx0x.C
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" } */
5
6 #define u       L
7 #define U       L
8
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";
13
14 int main () {}