mirror of
https://github.com/mfontanini/libtins
synced 2026-01-24 11:11:35 +01:00
10 lines
100 B
C++
10 lines
100 B
C++
struct foo {
|
|
int baz;
|
|
double bar;
|
|
};
|
|
|
|
int main(void)
|
|
{
|
|
return (sizeof(foo::bar) == 4) ? 0 : 1;
|
|
}
|