1*c85f09ccSJohn Levon struct s {
2*c85f09ccSJohn Levon 	int f:3;
3*c85f09ccSJohn Levon };
4*c85f09ccSJohn Levon 
foo(struct s * p,int a)5*c85f09ccSJohn Levon void foo(struct s *p, int a)
6*c85f09ccSJohn Levon {
7*c85f09ccSJohn Levon 	p->f = 1;
8*c85f09ccSJohn Levon 	p->f = a;
9*c85f09ccSJohn Levon }
10*c85f09ccSJohn Levon 
bar(struct s * p,int a)11*c85f09ccSJohn Levon void bar(struct s *p, int a)
12*c85f09ccSJohn Levon {
13*c85f09ccSJohn Levon 	p->f = a;
14*c85f09ccSJohn Levon 	p->f = 1;
15*c85f09ccSJohn Levon }
16*c85f09ccSJohn Levon 
17*c85f09ccSJohn Levon /*
18*c85f09ccSJohn Levon  * check-name: and-or-bf0
19*c85f09ccSJohn Levon  * check-command: test-linearize -Wno-decl $file
20*c85f09ccSJohn Levon  *
21*c85f09ccSJohn Levon  * check-output-ignore
22*c85f09ccSJohn Levon  * check-output-pattern(3): and\\.
23*c85f09ccSJohn Levon  * check-output-pattern(2): or\\.
24*c85f09ccSJohn Levon  */
25