blob: 3a2fc39d409d9b4b9b4d61459b0d9326daa414d0 [file] [log] [blame]
#![feature(negative_impls)]
struct MySendable {
t: *mut u8
}
unsafe impl Send for MySendable {}
struct MyNotSendable {
t: *mut u8
}
impl !Send for MyNotSendable {}
fn is_send<T: Send>() {}
fn main() {
is_send::<MySendable>();
is_send::<MyNotSendable>();
//~^ ERROR `MyNotSendable` cannot be sent between threads safely
}