2008-05-30 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git] / gcc / testsuite / gcc.dg / utf-dflt.c
blob7281ef3c73e7f0d31cdb3fd0990f6002fd403bd5
1 /* Contributed by Kris Van Hees <kris.van.hees@oracle.com> */
2 /* If not gnu99, the u and U prefixes should be parsed as separate tokens. */
3 /* { dg-do compile } */
4 /* { dg-options "" } */
6 const unsigned short c0 = u'a'; /* { dg-error "undeclared" } */
7 /* { dg-error "expected ',' or ';'" "" { target *-*-* } 6 } */
8 const unsigned long c1 = U'a'; /* { dg-error "undeclared" } */
9 /* { dg-error "expected ',' or ';'" "" { target *-*-* } 8 } */
11 #define u 1 +
12 #define U 2 +
14 const unsigned short c2 = u'a';
15 const unsigned long c3 = U'a';
17 #undef u
18 #undef U
19 #define u "a"
20 #define U "b"
22 const void *s0 = u"a";
23 const void *s1 = U"a";
25 int main () {}