1pub mod lock; 2pub mod semaphore; 3pub mod cyclic_barrier; 4mod binding; 5 6#[cfg(test)] 7mod tests { 8 use super::*; 9 10 #[test] 11 fn it_works() { 12 assert_eq!(4, 4); 13 } 14}