Sign in
android
/
platform
/
external
/
rust
/
crates
/
static_assertions
/
ed35a349bfde60b47e763540549266084212aab9
/
.
/
tests
/
obj_safe.rs
blob: 97847b26f95ed9e738f71f85f297ed71ba2e402a [
file
] [
log
] [
blame
]
#![
no_std
]
#![
deny
(
unsafe_code
)]
#[
macro_use
]
extern
crate static_assertions
;
assert_obj_safe
!(
core
::
fmt
::
Debug
,
Send
,
Sync
);
trait
ObjSafe
{}
assert_obj_safe
!(
ObjSafe
);