blob: 7d70664297abde46bc1617c3a76d6f0cf59e0965 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// PR preprocessor/57757
// { dg-do compile { target c++11 } }
// { dg-options "-save-temps" }
#define S(x) x
extern S("C")void exit (int);
int
main ()
{
(void) (S("foo")and 0);
const wchar_t *p = S(L"foo")L"bar";
const char *a = S("foo")R"(bar)";
exit (0);
}
|