Sign in
android
/
platform
/
external
/
rust
/
crates
/
static_assertions
/
c9c9019b2f97f2bf74dd17c053b0877964c24513
/
.
/
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
);