bionic/tools/versioner/tests/unnamed_bitfield/headers/foo.h

9 lines
205 B
C
Raw Permalink Normal View History

2025-08-25 08:22:42 +08:00
// <sys/timex.h> was causing a segfault when compiled in C++ mode because
// versioner was trying to mangle the name of an unnamed bitfield.
struct foo {
int : 32;
int : 32;
int : 32;
int : 32;
};