blob: 4471cd6795cb0d7e702c0a9ff560b27905f3aa1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//@ 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());
}
|