Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
gcc
/
testsuite
/
g++.dg
/
parse
/
offsetof2.C
blob: 4552d39fea2b1bf06709bb7095a8142b159ecf64 [
file
] [
log
] [
blame
]
#include
<cstddef>
struct
choke_me
{
int
size
;
char
storage
[
1
];
};
struct
offset_is_broken
{
static
const
int
offset
=
offsetof
(
choke_me
,
storage
);
};