1extern void foo_in_so(void);
2extern void unresolved_detected_at_runtime_not_at_linktime (void);
3
4void call_unresolved(void)
5{
6   unresolved_detected_at_runtime_not_at_linktime();
7}
8
9int main(int argc, char *argv[])
10{
11   foo_in_so();
12
13   return 0;
14}
15