rust/src/test/ui/impl-trait/auto-trait-leak2.rs

26 lines
639 B
Rust
Raw Normal View History

2018-05-22 07:31:56 -05:00
use std::cell::Cell;
use std::rc::Rc;
// Fast path, main can see the concrete type returned.
fn before() -> impl Fn(i32) {
let p = Rc::new(Cell::new(0));
move |x| p.set(x)
}
fn send<T: Send>(_: T) {}
fn main() {
send(before());
//~^ ERROR `std::rc::Rc<std::cell::Cell<i32>>` cannot be sent between threads safely
2018-05-22 07:31:56 -05:00
send(after());
//~^ ERROR `std::rc::Rc<std::cell::Cell<i32>>` cannot be sent between threads safely
2018-05-22 07:31:56 -05:00
}
// Deferred path, main has to wait until typeck finishes,
// to check if the return type of after is Send.
fn after() -> impl Fn(i32) {
let p = Rc::new(Cell::new(0));
move |x| p.set(x)
}