]> git.lizzy.rs Git - rust.git/blob - tests/ui/impl-trait/static-return-lifetime-infered.stderr
Rollup merge of #106427 - mejrs:translation_errors, r=davidtwco
[rust.git] / tests / ui / impl-trait / static-return-lifetime-infered.stderr
1 error[E0700]: hidden type for `impl Iterator<Item = u32>` captures lifetime that does not appear in bounds
2   --> $DIR/static-return-lifetime-infered.rs:7:9
3    |
4 LL |     fn iter_values_anon(&self) -> impl Iterator<Item=u32> {
5    |                         ----- hidden type `Map<std::slice::Iter<'_, (u32, u32)>, [closure@$DIR/static-return-lifetime-infered.rs:7:27: 7:30]>` captures the anonymous lifetime defined here
6 LL |         self.x.iter().map(|a| a.0)
7    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^
8    |
9 help: to declare that `impl Iterator<Item = u32>` captures `'_`, you can add an explicit `'_` lifetime bound
10    |
11 LL |     fn iter_values_anon(&self) -> impl Iterator<Item=u32> + '_ {
12    |                                                           ++++
13
14 error[E0700]: hidden type for `impl Iterator<Item = u32>` captures lifetime that does not appear in bounds
15   --> $DIR/static-return-lifetime-infered.rs:11:9
16    |
17 LL |     fn iter_values<'a>(&'a self) -> impl Iterator<Item=u32> {
18    |                    -- hidden type `Map<std::slice::Iter<'a, (u32, u32)>, [closure@$DIR/static-return-lifetime-infered.rs:11:27: 11:30]>` captures the lifetime `'a` as defined here
19 LL |         self.x.iter().map(|a| a.0)
20    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^
21    |
22 help: to declare that `impl Iterator<Item = u32>` captures `'a`, you can add an explicit `'a` lifetime bound
23    |
24 LL |     fn iter_values<'a>(&'a self) -> impl Iterator<Item=u32> + 'a {
25    |                                                             ++++
26
27 error: aborting due to 2 previous errors
28
29 For more information about this error, try `rustc --explain E0700`.