OSDN Git Service

* g++.dg/cdce3.C: Skip on alpha*-dec-osf5*.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / ext / utf-cxx0x.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=c++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 () {}