1 2 3 4 5 6 7 8
use super::Error; #[test] const fn error_should_be_send_and_sync() { const fn f<T: Send + Sync>() {} f::<Error>(); }