// compile-flags:-Zverbose // Tests closures that propagate an outlives relationship to their // creator where the subject is a projection with no regions (`::Item`, to be exact). #![allow(warnings)] #![feature(rustc_attrs)] trait Anything { } impl Anything for T { } fn with_signature<'a, T, F>(x: Box, op: F) -> Box where F: FnOnce(Box) -> Box { op(x) } #[rustc_regions] fn no_region<'a, T>(x: Box) -> Box where T: Iterator, { with_signature(x, |mut y| Box::new(y.next())) //~^ ERROR the associated type `::Item` may not live long enough } #[rustc_regions] fn correct_region<'a, T>(x: Box) -> Box where T: 'a + Iterator, { with_signature(x, |mut y| Box::new(y.next())) } #[rustc_regions] fn wrong_region<'a, 'b, T>(x: Box) -> Box where T: 'b + Iterator, { with_signature(x, |mut y| Box::new(y.next())) //~^ ERROR the associated type `::Item` may not live long enough } #[rustc_regions] fn outlives_region<'a, 'b, T>(x: Box) -> Box where T: 'b + Iterator, 'b: 'a, { with_signature(x, |mut y| Box::new(y.next())) } fn main() {}