Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp
/
paste1.C
blob: accc762cac05782a7bb3c4d2d94ae3b9ed57a64c [
file
] [
log
] [
blame
]
// PR preprocessor/57757
// { dg-do compile { target c++11 } }
#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
);
}