1int foo(int *f);
2
3int bar(int b) {
4	int var = b + 1;
5	return foo(&var);
6}
7
8int baz(int b) {
9	return bar(b);
10}
11