]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/impl-trait/lifetimes.rs
Auto merge of #56962 - nivkner:fixme_fixup4, r=pnkfelix
[rust.git] / src / test / run-pass / impl-trait / lifetimes.rs
1 // Copyright 2017 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // run-pass
12
13 #![allow(warnings)]
14
15 use std::fmt::Debug;
16
17 fn any_lifetime<'a>() -> &'a u32 { &5 }
18
19 fn static_lifetime() -> &'static u32 { &5 }
20
21 fn any_lifetime_as_static_impl_trait() -> impl Debug {
22     any_lifetime()
23 }
24
25 fn lifetimes_as_static_impl_trait() -> impl Debug {
26     static_lifetime()
27 }
28
29 fn no_params_or_lifetimes_is_static() -> impl Debug + 'static {
30     lifetimes_as_static_impl_trait()
31 }
32
33 fn static_input_type_is_static<T: Debug + 'static>(x: T) -> impl Debug + 'static { x }
34
35 fn type_outlives_reference_lifetime<'a, T: Debug>(x: &'a T) -> impl Debug + 'a { x }
36 fn type_outlives_reference_lifetime_elided<T: Debug>(x: &T) -> impl Debug + '_ { x }
37
38 trait SingleRegionTrait<'a> {}
39 impl<'a> SingleRegionTrait<'a> for u32 {}
40 impl<'a> SingleRegionTrait<'a> for &'a u32 {}
41 struct SingleRegionStruct<'a>(&'a u32);
42
43 fn simple_type_hrtb<'b>() -> impl for<'a> SingleRegionTrait<'a> { 5 }
44 fn elision_single_region_trait(x: &u32) -> impl SingleRegionTrait { x }
45 fn elision_single_region_struct(x: SingleRegionStruct) -> impl Into<SingleRegionStruct> { x }
46
47 fn closure_hrtb() -> impl for<'a> Fn(&'a u32) { |_| () }
48 fn closure_hr_elided() -> impl Fn(&u32) { |_| () }
49 fn closure_hr_elided_return() -> impl Fn(&u32) -> &u32 { |x| x }
50 fn closure_pass_through_elided_return(x: impl Fn(&u32) -> &u32) -> impl Fn(&u32) -> &u32 { x }
51 fn closure_pass_through_reference_elided(x: &impl Fn(&u32) -> &u32) -> &impl Fn(&u32) -> &u32 { x }
52
53 fn nested_lifetime<'a>(input: &'a str)
54     -> impl Iterator<Item = impl Iterator<Item = i32> + 'a> + 'a
55 {
56     input.lines().map(|line| {
57         line.split_whitespace().map(|cell| cell.parse().unwrap())
58     })
59 }
60
61 fn pass_through_elision(x: &u32) -> impl Into<&u32> { x }
62 fn pass_through_elision_with_fn_ptr(x: &fn(&u32) -> &u32) -> impl Into<&fn(&u32) -> &u32> { x }
63
64 fn pass_through_elision_with_fn_path<T: Fn(&u32) -> &u32>(
65     x: &T
66 ) -> &impl Fn(&u32) -> &u32 { x }
67
68 fn foo(x: &impl Debug) -> &impl Debug { x }
69 fn foo_explicit_lifetime<'a>(x: &'a impl Debug) -> &'a impl Debug { x }
70 fn foo_explicit_arg<T: Debug>(x: &T) -> &impl Debug { x }
71
72 fn mixed_lifetimes<'a>() -> impl for<'b> Fn(&'b &'a u32) { |_| () }
73 fn mixed_as_static() -> impl Fn(&'static &'static u32) { mixed_lifetimes() }
74
75 trait MultiRegionTrait<'a, 'b>: Debug {}
76
77 #[derive(Debug)]
78 struct MultiRegionStruct<'a, 'b>(&'a u32, &'b u32);
79 impl<'a, 'b> MultiRegionTrait<'a, 'b> for MultiRegionStruct<'a, 'b> {}
80
81 #[derive(Debug)]
82 struct NoRegionStruct;
83 impl<'a, 'b> MultiRegionTrait<'a, 'b> for NoRegionStruct {}
84
85 fn finds_least_region<'a: 'b, 'b>(x: &'a u32, y: &'b u32) -> impl MultiRegionTrait<'a, 'b> {
86     MultiRegionStruct(x, y)
87 }
88
89 fn finds_explicit_bound<'a: 'b, 'b>
90     (x: &'a u32, y: &'b u32) -> impl MultiRegionTrait<'a, 'b> + 'b
91 {
92     MultiRegionStruct(x, y)
93 }
94
95 fn finds_explicit_bound_even_without_least_region<'a, 'b>
96     (x: &'a u32, y: &'b u32) -> impl MultiRegionTrait<'a, 'b> + 'b
97 {
98     NoRegionStruct
99 }
100
101 /* FIXME: `impl Trait<'a> + 'b` should live as long as 'b, even if 'b outlives 'a
102 fn outlives_bounds_even_with_contained_regions<'a, 'b>
103     (x: &'a u32, y: &'b u32) -> impl Debug + 'b
104 {
105     finds_explicit_bound_even_without_least_region(x, y)
106 }
107 */
108
109 fn unnamed_lifetimes_arent_contained_in_impl_trait_and_will_unify<'a, 'b>
110     (x: &'a u32, y: &'b u32) -> impl Debug
111 {
112     fn deref<'lt>(x: &'lt u32) -> impl Debug { *x }
113
114     if true { deref(x) } else { deref(y) }
115 }
116
117 fn can_add_region_bound_to_static_type<'a, 'b>(_: &'a u32) -> impl Debug + 'a { 5 }
118
119 struct MyVec(Vec<Vec<u8>>);
120
121 impl<'unnecessary_lifetime> MyVec {
122     fn iter_doesnt_capture_unnecessary_lifetime<'s>(&'s self) -> impl Iterator<Item = &'s u8> {
123         self.0.iter().flat_map(|inner_vec| inner_vec.iter())
124     }
125 }
126
127 fn main() {}