15 lines
339 B
Rust
15 lines
339 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());
|
|
}
|