Remove primary label for more readable output
This commit is contained in:
parent
82d3a49564
commit
6be16baa4a
3 changed files with 7 additions and 8 deletions
|
|
@ -16,11 +16,11 @@ impl A {
|
|||
fn iter_values_anon(&self) -> impl Iterator<Item=u32> {
|
||||
self.x.iter().map(|a| a.0)
|
||||
}
|
||||
//~^^^ ERROR can't infer an appropriate lifetime
|
||||
//~^^ ERROR cannot infer an appropriate lifetime
|
||||
fn iter_values<'a>(&'a self) -> impl Iterator<Item=u32> {
|
||||
self.x.iter().map(|a| a.0)
|
||||
}
|
||||
//~^^^ ERROR can't infer an appropriate lifetime
|
||||
//~^^ ERROR cannot infer an appropriate lifetime
|
||||
}
|
||||
|
||||
fn main() {}
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
error: can't infer an appropriate lifetime
|
||||
error: cannot infer an appropriate lifetime
|
||||
--> $DIR/static-return-lifetime-infered.rs:17:16
|
||||
|
|
||||
LL | fn iter_values_anon(&self) -> impl Iterator<Item=u32> {
|
||||
| ----------------------- this return type evaluates to the `'static` lifetime...
|
||||
LL | self.x.iter().map(|a| a.0)
|
||||
| ------ ^^^^ can't infer an appropriate lifetime
|
||||
| ------ ^^^^
|
||||
| |
|
||||
| ...but this borrow...
|
||||
|
|
||||
|
|
@ -20,13 +20,13 @@ help: you can add a constraint to the return type to make it last less than `'st
|
|||
LL | fn iter_values_anon(&self) -> impl Iterator<Item=u32> + '_ {
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
error: can't infer an appropriate lifetime
|
||||
error: cannot infer an appropriate lifetime
|
||||
--> $DIR/static-return-lifetime-infered.rs:21:16
|
||||
|
|
||||
LL | fn iter_values<'a>(&'a self) -> impl Iterator<Item=u32> {
|
||||
| ----------------------- this return type evaluates to the `'static` lifetime...
|
||||
LL | self.x.iter().map(|a| a.0)
|
||||
| ------ ^^^^ can't infer an appropriate lifetime
|
||||
| ------ ^^^^
|
||||
| |
|
||||
| ...but this borrow...
|
||||
|
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue