2020-04-19 16:22:55 -05:00
|
|
|
// ignore-linux: Only Windows is not supported.
|
|
|
|
// ignore-macos: Only Windows is not supported.
|
|
|
|
|
2020-04-15 23:25:12 -05:00
|
|
|
use std::thread;
|
|
|
|
|
|
|
|
// error-pattern: Miri does not support threading
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
thread::spawn(|| {});
|
|
|
|
}
|