#![feature(negative_impls)] #![feature(specialization)] trait MyTrait {} struct TestType(::std::marker::PhantomData); unsafe impl Send for TestType {} impl !Send for TestType {} //~ ERROR E0748 fn main() {}