bf37d190e10bc3389bdb981d990c4ed88cb2d87a
[oota-llvm.git] / test / CFrontend / 2003-11-19-BitFieldArray.c
1 struct _GIOChannel {
2   int write_buf;
3   char partial_write_buf[6];
4   int d :1;
5 };
6
7 void g_io_channel_init (struct _GIOChannel *channel) {
8   channel->partial_write_buf[0];
9 }
10