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

12 lines
107 B
Rust
Raw Normal View History

2019-03-07 15:12:48 -05:00
extern "C" {
fn bar();
fn baz();
}
fn main() {
unsafe {
bar();
baz();
}
}