about summary refs log tree commit diff
path: root/tests/run-make/longjmp-across-rust/main.rs
blob: 0ebf11ac03c9db4ed292570bf739cd327c7b69e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#[link(name = "foo", kind = "static")]
extern "C" {
    fn test_start(f: extern "C" fn());
    fn test_end();
}

fn main() {
    unsafe {
        test_start(test_middle);
    }
}

extern "C" fn test_middle() {
    foo();
}

fn foo() {
    unsafe {
        test_end();
    }
}