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