rust/src/test/ui/no_send-rc.rs
2018-12-25 21:08:33 -07:00

10 lines
172 B
Rust

use std::rc::Rc;
fn bar<T: Send>(_: T) {}
fn main() {
let x = Rc::new(5);
bar(x);
//~^ ERROR `std::rc::Rc<{integer}>` cannot be sent between threads safely
}