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