]> git.lizzy.rs Git - rust.git/blob - src/test/run-make-fulldeps/redundant-libs/baz.c
Merge commit '4c41a222ca5d1325fb4b6709395bd06e766cc042' into clippyup
[rust.git] / src / test / run-make-fulldeps / redundant-libs / baz.c
1 extern void foo1();
2 extern void foo2();
3
4 void baz() {
5   foo1();
6   foo2();
7 }