1 #include "bar.h"
2 
foo()3 int foo() {
4   return 1;
5 }
6 
main()7 int main() {
8   return bar();
9 }
10