blob: 8716b6ae65a9f8170820cda02b00816b85e96a5d [file] [log] [blame]
struct mouse_button_str {
unsigned char left : 1;
unsigned char right : 1;
unsigned char middle : 1;
};
int g(void)
{
signed char a = 0;
struct mouse_button_str *newbutton1 = (struct mouse_button_str*)&a;
newbutton1->left = 1;
return a;
}