xref: /illumos-gate/usr/src/tools/smatch/src/validation/backend/function-ptr.c (revision 332e84f52cdee3d0232bd5ac5306c42177959c96)
1 typedef int (*fn_t)(int x, int y);
2 
3 static int run(fn_t fn, int x, int y)
4 {
5 	return fn(x, y);
6 }
7 
8 /*
9  * check-name: Function pointer code generation
10  * check-command: sparsec -c $file -o tmp.o
11  */
12