Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
ext
/
is_pod_98.C
blob: 80a87c825c40d7c70fc5457548002e24129ba108 [
file
] [
log
] [
blame
]
// PR c++/43333
// { dg-options "-std=c++98" }
// { dg-do run }
struct
strPOD
{
const
char
*
const
foo
;
const
char
*
const
bar
;
};
extern
"C"
void
abort
(
void
);
int
main
()
{
if
(!
__is_pod
(
strPOD
))
abort
();
return
0
;
}