blob: 4471cd6795cb0d7e702c0a9ff560b27905f3aa1e [file] [log] [blame]
//@ run-fail
//@ regex-error-pattern: thread '<unnamed>' \(\d+\) panicked
//@ error-pattern: test
//@ needs-threads
use std::thread;
fn main() {
let r: Result<(), _> = thread::spawn(move || {
panic!("test");
})
.join();
assert!(r.is_ok());
}