11 lines
206 B
Rust
Raw Normal View History

2020-04-19 14:22:55 -07:00
// ignore-linux: Only Windows is not supported.
// ignore-macos: Only Windows is not supported.
use std::thread;
// error-pattern: can't create threads on Windows
fn main() {
thread::spawn(|| {});
}