rust/tests/run-make-fulldeps/a-b-a-linker-guard/b.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
73 B
Rust
Raw Normal View History

2016-03-24 12:20:08 -05:00
#![crate_name = "b"]
extern crate a;
fn main() {
a::foo(22_u32);
}