about summary refs log tree commit diff
path: root/tests/run-make/static-unwinding/main.rs
blob: ceb0a24804c559ca60939cda273bcd1f8ece79b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
extern crate lib;

use std::thread;

static mut statik: isize = 0;

struct A;
impl Drop for A {
    fn drop(&mut self) {
        unsafe {
            statik = 1;
        }
    }
}

fn main() {
    thread::spawn(move || {
        let _a = A;
        lib::callback(|| panic!());
    })
    .join()
    .unwrap_err();

    unsafe {
        assert_eq!(lib::statik, 1);
        assert_eq!(statik, 1);
    }
}