13 lines
307 B
Rust
13 lines
307 B
Rust
#![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>();
|
|
}
|