a.c (251B)
1 /* Archive demand-loading: fn_from_archive is defined in b.c, which is 2 * packaged as b.a. The linker must pull b.o from the archive to satisfy 3 * the reference from a.c. */ 4 int fn_from_archive(void); 5 int test_main(void) { return fn_from_archive(); }