1 /* Undefined symbol.  */
2 extern int not_exist (void);
3 
foo(void)4 int foo (void)
5 {
6   return not_exist ();
7 }
8