-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
When suggesting
for
lts, consider existing lifetime names
Fix #72404.
- Loading branch information
Showing
6 changed files
with
172 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
struct X<'a>(&'a ()); | ||
struct S<'a>(&'a dyn Fn(&X) -> &X); | ||
//~^ ERROR missing lifetime specifier | ||
//~| ERROR missing lifetime specifier | ||
struct V<'a>(&'a dyn for<'b> Fn(&X) -> &X); | ||
//~^ ERROR missing lifetime specifier | ||
//~| ERROR missing lifetime specifier | ||
|
||
fn main() { | ||
let x = S(&|x| { | ||
println!("hi"); | ||
x | ||
}); | ||
x.0(&X(&())); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
error[E0106]: missing lifetime specifier | ||
--> $DIR/missing-lt-for-hrtb.rs:2:32 | ||
| | ||
LL | struct S<'a>(&'a dyn Fn(&X) -> &X); | ||
| -- ^ expected named lifetime parameter | ||
| | ||
= help: this function's return type contains a borrowed value, but the signature does not say which one of argument 1's 2 lifetimes it is borrowed from | ||
= note: for more information on higher-ranked polymorphism, visit https://doc.rust-lang.org/nomicon/hrtb.html | ||
help: consider making the bound lifetime-generic with a new `'b` lifetime | ||
| | ||
LL | struct S<'a>(&'a dyn for<'b> Fn(&'b X) -> &'b X); | ||
| ^^^^^^^ ^^^^^ ^^^ | ||
help: consider using the `'a` lifetime | ||
| | ||
LL | struct S<'a>(&'a dyn Fn(&X) -> &'a X); | ||
| ^^^ | ||
|
||
error[E0106]: missing lifetime specifier | ||
--> $DIR/missing-lt-for-hrtb.rs:2:33 | ||
| | ||
LL | struct S<'a>(&'a dyn Fn(&X) -> &X); | ||
| -- ^ expected named lifetime parameter | ||
| | ||
= help: this function's return type contains a borrowed value, but the signature does not say which one of argument 1's 2 lifetimes it is borrowed from | ||
= note: for more information on higher-ranked polymorphism, visit https://doc.rust-lang.org/nomicon/hrtb.html | ||
help: consider making the bound lifetime-generic with a new `'b` lifetime | ||
| | ||
LL | struct S<'a>(&'a dyn for<'b> Fn(&'b X) -> &X<'b>); | ||
| ^^^^^^^ ^^^^^ ^^^^^ | ||
help: consider using the `'a` lifetime | ||
| | ||
LL | struct S<'a>(&'a dyn Fn(&X) -> &X<'a>); | ||
| ^^^^^ | ||
|
||
error[E0106]: missing lifetime specifier | ||
--> $DIR/missing-lt-for-hrtb.rs:5:40 | ||
| | ||
LL | struct V<'a>(&'a dyn for<'b> Fn(&X) -> &X); | ||
| -- ^ expected named lifetime parameter | ||
| | ||
= help: this function's return type contains a borrowed value, but the signature does not say which one of argument 1's 2 lifetimes it is borrowed from | ||
note: these named lifetimes are available to use | ||
--> $DIR/missing-lt-for-hrtb.rs:5:10 | ||
| | ||
LL | struct V<'a>(&'a dyn for<'b> Fn(&X) -> &X); | ||
| ^^ ^^ | ||
|
||
error[E0106]: missing lifetime specifier | ||
--> $DIR/missing-lt-for-hrtb.rs:5:41 | ||
| | ||
LL | struct V<'a>(&'a dyn for<'b> Fn(&X) -> &X); | ||
| -- ^ expected named lifetime parameter | ||
| | ||
= help: this function's return type contains a borrowed value, but the signature does not say which one of argument 1's 2 lifetimes it is borrowed from | ||
note: these named lifetimes are available to use | ||
--> $DIR/missing-lt-for-hrtb.rs:5:10 | ||
| | ||
LL | struct V<'a>(&'a dyn for<'b> Fn(&X) -> &X); | ||
| ^^ ^^ | ||
|
||
error: aborting due to 4 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0106`. |