binutils-gdb/gdb/testbit.c
2012-06-03 15:36:30 +01:00

12 lines
134 B
C

struct foo
{
unsigned bar : 1;
unsigned lose : 1;
};
main ()
{
struct foo *win;
printf ("%d, %d\n", win->bar, win->lose);
}