mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-01 22:18:23 +03:00
11 lines
219 B
Rust
11 lines
219 B
Rust
// ignore-linux: Only Windows is not supported.
|
|
// ignore-macos: Only Windows is not supported.
|
|
|
|
use std::thread;
|
|
|
|
// error-pattern: Miri does not support concurrency on Windows
|
|
|
|
fn main() {
|
|
thread::spawn(|| {});
|
|
}
|