2020-04-19 14:22:55 -07:00
|
|
|
// ignore-linux: Only Windows is not supported.
|
|
|
|
// ignore-macos: Only Windows is not supported.
|
|
|
|
|
2020-04-15 21:25:12 -07:00
|
|
|
use std::thread;
|
|
|
|
|
2020-06-28 09:47:20 +02:00
|
|
|
// error-pattern: Miri does not support concurrency on Windows
|
2020-04-15 21:25:12 -07:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
thread::spawn(|| {});
|
|
|
|
}
|