testbit.c 134 B

12345678910111213
  1. struct foo
  2. {
  3. unsigned bar : 1;
  4. unsigned lose : 1;
  5. };
  6. main ()
  7. {
  8. struct foo *win;
  9. printf ("%d, %d\n", win->bar, win->lose);
  10. }