blob: a44bcd49c6a9c49a92a715fda92a8b33979d5b08 [file] [log] [blame]
//@ run-pass
#![allow(unused_attributes)]
//@ aux-build:issue-29485.rs
//@ needs-unwind
//@ needs-threads
#[feature(recover)]
extern crate a;
fn main() {
let _ = std::thread::spawn(move || {
a::f(&mut a::X(0), g);
}).join();
}
fn g() {
panic!();
}