1*c85f09ccSJohn Levon struct s {
2*c85f09ccSJohn Levon 	int f;
3*c85f09ccSJohn Levon };
4*c85f09ccSJohn Levon 
foo(struct s * s)5*c85f09ccSJohn Levon static int foo(struct s *s)
6*c85f09ccSJohn Levon {
7*c85f09ccSJohn Levon 	if (s->f)
8*c85f09ccSJohn Levon 		return 0;
9*c85f09ccSJohn Levon 	else if (!s->f)
10*c85f09ccSJohn Levon 		return 4;
11*c85f09ccSJohn Levon 	return -1;
12*c85f09ccSJohn Levon }
13*c85f09ccSJohn Levon 
14*c85f09ccSJohn Levon /*
15*c85f09ccSJohn Levon  * check-name: dup-cond0
16*c85f09ccSJohn Levon  * check-command: test-linearize -Wno-decl $file
17*c85f09ccSJohn Levon  *
18*c85f09ccSJohn Levon  * check-output-ignore
19*c85f09ccSJohn Levon  * check-output-contains: select
20*c85f09ccSJohn Levon  */
21