rust/tests/run-make/sanitizer-staticlib-link/program.rs

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

11 lines
114 B
Rust
Raw Normal View History

#[link(name = "library")]
2020-09-01 16:12:52 -05:00
extern "C" {
fn overflow();
}
fn main() {
unsafe {
overflow();
}
}