rust/tests/pass/concurrency/issue1643.rs
2022-06-01 10:53:38 -04:00

17 lines
330 B
Rust

// 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();
}