]> git.lizzy.rs Git - rust.git/blob - src/test/ui/impl-trait/must_outlive_least_region_or_bound.rs
837244b022721c266bd9353b960e2e2b961daf7e
[rust.git] / src / test / ui / impl-trait / must_outlive_least_region_or_bound.rs
1 use std::fmt::Debug;
2
3 fn elided(x: &i32) -> impl Copy { x }
4 //~^ ERROR cannot infer an appropriate lifetime
5
6 fn explicit<'a>(x: &'a i32) -> impl Copy { x }
7 //~^ ERROR cannot infer an appropriate lifetime
8
9 fn elided2(x: &i32) -> impl Copy + 'static { x }
10 //~^ ERROR cannot infer an appropriate lifetime
11
12 fn explicit2<'a>(x: &'a i32) -> impl Copy + 'static { x }
13 //~^ ERROR cannot infer an appropriate lifetime
14
15 fn foo<'a>(x: &i32) -> impl Copy + 'a { x }
16 //~^ ERROR explicit lifetime required in the type of `x`
17
18 fn elided3(x: &i32) -> Box<dyn Debug> { Box::new(x) }
19 //~^ ERROR cannot infer an appropriate lifetime
20
21 fn explicit3<'a>(x: &'a i32) -> Box<dyn Debug> { Box::new(x) }
22 //~^ ERROR cannot infer an appropriate lifetime
23
24 fn elided4(x: &i32) -> Box<dyn Debug + 'static> { Box::new(x) }
25 //~^ ERROR cannot infer an appropriate lifetime
26
27 fn explicit4<'a>(x: &'a i32) -> Box<dyn Debug + 'static> { Box::new(x) }
28 //~^ ERROR cannot infer an appropriate lifetime
29
30 trait LifetimeTrait<'a> {}
31 impl<'a> LifetimeTrait<'a> for &'a i32 {}
32
33 fn with_bound<'a>(x: &'a i32) -> impl LifetimeTrait<'a> + 'static { x }
34 //~^ ERROR cannot infer an appropriate lifetime
35
36 // Tests that a closure type containing 'b cannot be returned from a type where
37 // only 'a was expected.
38 fn move_lifetime_into_fn<'a, 'b>(x: &'a u32, y: &'b u32) -> impl Fn(&'a u32) {
39     //~^ ERROR lifetime mismatch
40     move |_| println!("{}", y)
41 }
42
43 fn ty_param_wont_outlive_static<T:Debug>(x: T) -> impl Debug + 'static {
44     //~^ ERROR the parameter type `T` may not live long enough
45     x
46 }
47
48 fn main() {}