rust/tests/run-pass/concurrency/issue1643.rs

17 lines
330 B
Rust
Raw Normal View History

2020-12-07 17:43:19 -06:00
// ignore-windows: Concurrency on Windows is not supported yet.
use std::thread::spawn;
fn initialize() {
initialize_inner(&mut || false)
}
fn initialize_inner(_init: &mut dyn FnMut() -> bool) {}
fn main() {
let j1 = spawn(initialize);
let j2 = spawn(initialize);
j1.join().unwrap();
j2.join().unwrap();
}