1 // Compile with:
2 // g++ -g -Wall -L. -ltest1-fn-removed-v0 -o test1-fn-removed-app test1-fn-removed-app.cc
3 
4 extern void fun1();
5 extern void fun2();
6 
7 int
main()8 main()
9 {
10   fun1();
11   fun2();
12   return 0;
13 }
14