10 lines
158 B
Rust
Raw Normal View History

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