-
Notifications
You must be signed in to change notification settings - Fork 12.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
place explicit lifetime bound after generic param #124884
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
26 changes: 26 additions & 0 deletions
26
tests/ui/generic-associated-types/static-lifetime-tip-with-default-type.rs
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,26 @@ | ||
//@ error-pattern: r#T: 'static | ||
//@ error-pattern: r#K: 'static | ||
//@ error-pattern: T: 'static= | ||
|
||
bvanjoi marked this conversation as resolved.
Show resolved
Hide resolved
|
||
// https://github.com/rust-lang/rust/issues/124785 | ||
|
||
struct Foo<T, K = i32>(&'static T, &'static K); | ||
//~^ ERROR: the parameter type `T` may not live long enough | ||
//~| ERROR: the parameter type `K` may not live long enough | ||
|
||
struct Bar<r#T, r#K = i32>(&'static r#T, &'static r#K); | ||
//~^ ERROR: the parameter type `T` may not live long enough | ||
//~| ERROR: the parameter type `K` may not live long enough | ||
|
||
struct Boo<T= i32>(&'static T); | ||
//~^ ERROR: the parameter type `T` may not live long enough | ||
|
||
struct Far<T | ||
= i32>(&'static T); | ||
//~^ ERROR: the parameter type `T` may not live long enough | ||
|
||
struct S<'a, K: 'a = i32>(&'static K); | ||
//~^ ERROR: lifetime parameter `'a` is never used | ||
//~| ERROR: the parameter type `K` may not live long enough | ||
|
||
fn main() {} |
110 changes: 110 additions & 0 deletions
110
tests/ui/generic-associated-types/static-lifetime-tip-with-default-type.stderr
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,110 @@ | ||
error[E0310]: the parameter type `T` may not live long enough | ||
--> $DIR/static-lifetime-tip-with-default-type.rs:7:24 | ||
| | ||
LL | struct Foo<T, K = i32>(&'static T, &'static K); | ||
| ^^^^^^^^^^ | ||
| | | ||
| the parameter type `T` must be valid for the static lifetime... | ||
| ...so that the reference type `&'static T` does not outlive the data it points at | ||
| | ||
help: consider adding an explicit lifetime bound | ||
| | ||
LL | struct Foo<T: 'static, K = i32>(&'static T, &'static K); | ||
| +++++++++ | ||
|
||
error[E0310]: the parameter type `K` may not live long enough | ||
--> $DIR/static-lifetime-tip-with-default-type.rs:7:36 | ||
| | ||
LL | struct Foo<T, K = i32>(&'static T, &'static K); | ||
| ^^^^^^^^^^ | ||
| | | ||
| the parameter type `K` must be valid for the static lifetime... | ||
| ...so that the reference type `&'static K` does not outlive the data it points at | ||
| | ||
help: consider adding an explicit lifetime bound | ||
| | ||
LL | struct Foo<T, K: 'static = i32>(&'static T, &'static K); | ||
| +++++++++ | ||
|
||
error[E0310]: the parameter type `T` may not live long enough | ||
--> $DIR/static-lifetime-tip-with-default-type.rs:11:28 | ||
| | ||
LL | struct Bar<r#T, r#K = i32>(&'static r#T, &'static r#K); | ||
| ^^^^^^^^^^^^ | ||
| | | ||
| the parameter type `T` must be valid for the static lifetime... | ||
| ...so that the reference type `&'static T` does not outlive the data it points at | ||
| | ||
help: consider adding an explicit lifetime bound | ||
| | ||
LL | struct Bar<r#T: 'static, r#K = i32>(&'static r#T, &'static r#K); | ||
| +++++++++ | ||
|
||
error[E0310]: the parameter type `K` may not live long enough | ||
--> $DIR/static-lifetime-tip-with-default-type.rs:11:42 | ||
| | ||
LL | struct Bar<r#T, r#K = i32>(&'static r#T, &'static r#K); | ||
| ^^^^^^^^^^^^ | ||
| | | ||
| the parameter type `K` must be valid for the static lifetime... | ||
| ...so that the reference type `&'static K` does not outlive the data it points at | ||
| | ||
help: consider adding an explicit lifetime bound | ||
| | ||
LL | struct Bar<r#T, r#K: 'static = i32>(&'static r#T, &'static r#K); | ||
| +++++++++ | ||
|
||
error[E0310]: the parameter type `T` may not live long enough | ||
--> $DIR/static-lifetime-tip-with-default-type.rs:15:20 | ||
| | ||
LL | struct Boo<T= i32>(&'static T); | ||
| ^^^^^^^^^^ | ||
| | | ||
| the parameter type `T` must be valid for the static lifetime... | ||
| ...so that the reference type `&'static T` does not outlive the data it points at | ||
| | ||
help: consider adding an explicit lifetime bound | ||
| | ||
LL | struct Boo<T: 'static= i32>(&'static T); | ||
| +++++++++ | ||
|
||
error[E0310]: the parameter type `T` may not live long enough | ||
--> $DIR/static-lifetime-tip-with-default-type.rs:19:8 | ||
| | ||
LL | = i32>(&'static T); | ||
| ^^^^^^^^^^ | ||
| | | ||
| the parameter type `T` must be valid for the static lifetime... | ||
| ...so that the reference type `&'static T` does not outlive the data it points at | ||
| | ||
help: consider adding an explicit lifetime bound | ||
| | ||
LL | struct Far<T: 'static | ||
| +++++++++ | ||
|
||
error[E0310]: the parameter type `K` may not live long enough | ||
--> $DIR/static-lifetime-tip-with-default-type.rs:22:27 | ||
| | ||
LL | struct S<'a, K: 'a = i32>(&'static K); | ||
| ^^^^^^^^^^ | ||
| | | ||
| the parameter type `K` must be valid for the static lifetime... | ||
| ...so that the reference type `&'static K` does not outlive the data it points at | ||
| | ||
help: consider adding an explicit lifetime bound | ||
| | ||
LL | struct S<'a, K: 'a + 'static = i32>(&'static K); | ||
| +++++++++ | ||
|
||
error[E0392]: lifetime parameter `'a` is never used | ||
--> $DIR/static-lifetime-tip-with-default-type.rs:22:10 | ||
| | ||
LL | struct S<'a, K: 'a = i32>(&'static K); | ||
| ^^ unused lifetime parameter | ||
| | ||
= help: consider removing `'a`, referring to it in a field, or using a marker such as `PhantomData` | ||
|
||
error: aborting due to 8 previous errors | ||
|
||
Some errors have detailed explanations: E0310, E0392. | ||
For more information about an error, try `rustc --explain E0310`. |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Out of curiosity, is there any case where this can be reached?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I also think no cases can reach this branch, but using
unreachable!()
here seems unnecessary...