Sha256: ecccf9202a33611f64b76598806aa82abec2560ae058e32f63fb2fb3ef225be9
Contents?: true
Size: 246 Bytes
Versions: 28
Compression:
Stored size: 246 Bytes
Contents
#![allow(clippy::extra_unused_type_parameters)] use anyhow::Error; #[test] fn test_send() { fn assert_send<T: Send>() {} assert_send::<Error>(); } #[test] fn test_sync() { fn assert_sync<T: Sync>() {} assert_sync::<Error>(); }
Version data entries
28 entries across 28 versions & 1 rubygems