]> git.saurik.com Git - apple/ld64.git/blob - unit-tests/test-cases/dead_strip-weak-coalesce/main.c
ld64-96.5.tar.gz
[apple/ld64.git] / unit-tests / test-cases / dead_strip-weak-coalesce / main.c
1
2 // baz is in a lazily loaded archive
3 extern void baz();
4
5 int main()
6 {
7 baz();
8 return 0;
9 }
10
11
12 #include "foo.c"
13