summaryrefslogtreecommitdiffstats
path: root/tests/run-make-fulldeps/sanitizer-staticlib-link/program.rs
blob: ec59bdb11c889eb86412857b1d10be205cde6adc (plain)
1
2
3
4
5
6
7
8
9
10
#[link(name = "library")]
extern "C" {
    fn overflow();
}

fn main() {
    unsafe {
        overflow();
    }
}