]> git.lizzy.rs Git - rust.git/blob - src/test/run-make-fulldeps/cdylib/foo.c
Merge commit '7bfc26ec8e7a454786668e7e52ffe527fc649735' into clippyup
[rust.git] / src / test / run-make-fulldeps / cdylib / foo.c
1 #include <assert.h>
2
3 extern void foo();
4 extern unsigned bar(unsigned a, unsigned b);
5
6 int main() {
7   foo();
8   assert(bar(1, 2) == 3);
9   return 0;
10 }