• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // <sys/timex.h> was causing a segfault when compiled in C++ mode because
2 // versioner was trying to mangle the name of an unnamed bitfield.
3 struct foo {
4   int : 32;
5   int : 32;
6   int : 32;
7   int : 32;
8 };
9