// NOTE: the following tests will compile iff. the tested structs are `Send + Sync + 'static`. use ncollide2d::world::CollisionWorld; fn is_send_sync(_: T) -> bool { true } #[test] fn world_is_send_sync() { let world = CollisionWorld::::new(0.0f32); assert!(is_send_sync(world)); }