rustc/tests/ui/panics/panic-task-name-none.rs
2024-06-21 09:39:33 +02:00

15 lines
325 B
Rust

//@ run-fail
//@ error-pattern:thread '<unnamed>' panicked
//@ error-pattern:test
//@ needs-threads
use std::thread;
fn main() {
let r: Result<(), _> = thread::spawn(move || {
panic!("test");
})
.join();
assert!(r.is_ok());
}