Daily bump.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp / paste2.C
blob7d70664297abde46bc1617c3a76d6f0cf59e0965
1 // PR preprocessor/57757
2 // { dg-do compile { target c++11 } }
3 // { dg-options "-save-temps" }
5 #define S(x) x
6 extern S("C")void exit (int);
7 int
8 main ()
10   (void) (S("foo")and 0);
11   const wchar_t *p = S(L"foo")L"bar";
12   const char *a = S("foo")R"(bar)";
13   exit (0);