]> git.proxmox.com Git - rustc.git/blob - src/test/run-make-fulldeps/redundant-libs/main.rs
New upstream version 1.67.1+dfsg1
[rustc.git] / src / test / run-make-fulldeps / redundant-libs / main.rs
1 extern "C" {
2 fn bar();
3 fn baz();
4 }
5
6 fn main() {
7 unsafe {
8 bar();
9 baz();
10 }
11 }