mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-02-17 13:10:12 +08:00
14 lines
123 B
C
14 lines
123 B
C
struct foo
|
|
{
|
|
int a : 5, : 4, b : 5;
|
|
char c;
|
|
int : 3, d : 8, : 0, e : 5;
|
|
};
|
|
|
|
struct foo x;
|
|
|
|
main ()
|
|
{
|
|
printf (x);
|
|
}
|