summaryrefslogtreecommitdiffstats
path: root/tests/run-make-fulldeps/static-unwinding/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run-make-fulldeps/static-unwinding/main.rs')
-rw-r--r--tests/run-make-fulldeps/static-unwinding/main.rs24
1 files changed, 0 insertions, 24 deletions
diff --git a/tests/run-make-fulldeps/static-unwinding/main.rs b/tests/run-make-fulldeps/static-unwinding/main.rs
deleted file mode 100644
index 0c66ea1aa..000000000
--- a/tests/run-make-fulldeps/static-unwinding/main.rs
+++ /dev/null
@@ -1,24 +0,0 @@
-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);
- }
-}