rust/src/test/ui/issues/issue-21763.rs

12 lines
269 B
Rust
Raw Normal View History

2015-01-29 21:18:45 -06:00
// Regression test for HashMap only impl'ing Send/Sync if its contents do
use std::collections::HashMap;
use std::rc::Rc;
fn foo<T: Send>() {}
fn main() {
foo::<HashMap<Rc<()>, Rc<()>>>();
//~^ ERROR `std::rc::Rc<()>` cannot be sent between threads safely
2015-01-29 21:18:45 -06:00
}