FairRoot
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
cxx11-test-sizeof_member_fail.cpp
Go to the documentation of this file.
1 struct foo {
2  int baz;
3  double bar;
4 };
5 
6 int main(void)
7 {
8  return (sizeof(foo::bar) == 4) ? 0 : 1;
9 }
int main(void)