// Take a look at the license at the top of the repository in the LICENSE file. #[test] #[allow(clippy::extra_unused_type_parameters)] #[cfg(feature = "system")] fn test_send_sync() { fn is_send() {} fn is_sync() {} is_send::(); is_sync::(); }