[go: up one dir, main page]

Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![allow(missing_docs)]

#[cfg(feature = "std")]
#[test]
fn error_impl_std_error_error_test() {
    use ring::error;
    #[allow(deprecated)]
    use ring::test;

    test::compile_time_assert_std_error_error::<error::Unspecified>();
    test::compile_time_assert_std_error_error::<error::KeyRejected>();
}