]> git.lizzy.rs Git - rust.git/blob - src/test/run-make-fulldeps/redundant-libs/main.rs
Merge commit 'ea199bacef07213dbe008841b89c450e3bf0c638' into rustfmt-sync
[rust.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 }