foo(int p,int (* f0)(int),int (* f1)(int),int arg)1*c85f09ccSJohn Levon int foo(int p, int (*f0)(int), int (*f1)(int), int arg)
2*c85f09ccSJohn Levon {
3*c85f09ccSJohn Levon 	return (p ? f0 : f1)(arg);
4*c85f09ccSJohn Levon }
5*c85f09ccSJohn Levon /*
6*c85f09ccSJohn Levon  * check-name: call-complex-pointer
7*c85f09ccSJohn Levon  * check-command: test-linearize -Wno-decl $file
8*c85f09ccSJohn Levon  * check-known-to-fail
9*c85f09ccSJohn Levon  *
10*c85f09ccSJohn Levon  * check-output-ignore
11*c85f09ccSJohn Levon  * check-output-excludes: ptrcast\\.
12*c85f09ccSJohn Levon  * check-output-contains: select\\.
13*c85f09ccSJohn Levon  */
14