mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-30 10:45:18 +00:00
15 lines
343 B
Rust
15 lines
343 B
Rust
//@ run-fail
|
|
//@ error-pattern:thread '<unnamed>' panicked
|
|
//@ error-pattern:test
|
|
//@ ignore-emscripten Needs threads
|
|
|
|
use std::thread;
|
|
|
|
fn main() {
|
|
let r: Result<(), _> = thread::spawn(move || {
|
|
panic!("test");
|
|
})
|
|
.join();
|
|
assert!(r.is_ok());
|
|
}
|