1*c85f09ccSJohn Levon struct s {
2*c85f09ccSJohn Levon 	int f:5;
3*c85f09ccSJohn Levon };
4*c85f09ccSJohn Levon 
inc(struct s * p)5*c85f09ccSJohn Levon void inc(struct s *p)
6*c85f09ccSJohn Levon {
7*c85f09ccSJohn Levon 	p->f++;
8*c85f09ccSJohn Levon }
9*c85f09ccSJohn Levon 
10*c85f09ccSJohn Levon /*
11*c85f09ccSJohn Levon  * check-name: bitfield-inc
12*c85f09ccSJohn Levon  * check-command: test-linearize -Wno-decl $file
13*c85f09ccSJohn Levon  *
14*c85f09ccSJohn Levon  * check-output-ignore
15*c85f09ccSJohn Levon  * check-output-excludes: add\\.5
16*c85f09ccSJohn Levon  */
17