Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
parse
/
offsetof1.C
blob: ae9d3110aba67c5dc0bdd5fb8dc66e6659decba6 [
file
] [
log
] [
blame
]
#include
<stddef.h>
template
<bool>
struct
StaticAssert
;
template
<>
struct
StaticAssert
<true>
{};
struct
MyPOD
{
int
a
;
int
b
;
int
c
;
};
StaticAssert
<(
offsetof
(
MyPOD
,
a
)
==
0
)>
s
;