]> git.lizzy.rs Git - rust.git/blob - src/test/run-make-fulldeps/manual-link/foo.rs
Add 'src/tools/rust-analyzer/' from commit '977e12a0bdc3e329af179ef3a9d466af9eb613bb'
[rust.git] / src / test / run-make-fulldeps / manual-link / foo.rs
1 #![crate_type = "rlib"]
2
3 extern "C" {
4     fn bar();
5 }
6
7 pub fn foo() {
8     unsafe {
9         bar();
10     }
11 }