blob: 0152b703e8eb2cec344ccea80b30f7f7356a9d12 (
plain)
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>();
}
|