1 #[cfg(feature = "std")]
2 #[test]
error_impl_std_error_error_test()3 fn error_impl_std_error_error_test() {
4     use ring::{error, test};
5     test::compile_time_assert_std_error_error::<error::Unspecified>();
6     test::compile_time_assert_std_error_error::<error::KeyRejected>();
7 }
8