rust/tests/fail/concurrency/thread-spawn.rs
2022-06-01 10:53:38 -04:00

10 lines
158 B
Rust

// only-windows: Only Windows is not supported.
use std::thread;
// error-pattern: can't create threads on Windows
fn main() {
thread::spawn(|| {});
}