• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #![no_std]
2 #![deny(unsafe_code)]
3 
4 #[macro_use]
5 extern crate static_assertions;
6 
7 assert_obj_safe!(core::fmt::Debug, Send, Sync);
8 
9 trait ObjSafe {}
10 assert_obj_safe!(ObjSafe);
11