blob: 435b23ad35bd4d96cc67884265b7b3a1e836f7be [file] [log] [blame]
// Take a look at the license at the top of the repository in the LICENSE file.
#[test]
#[allow(clippy::extra_unused_type_parameters)]
fn test_send_sync() {
fn is_send<T: Send>() {}
fn is_sync<T: Sync>() {}
is_send::<sysinfo::System>();
is_sync::<sysinfo::System>();
}