-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
place explicit lifetime bound after generic param
- Loading branch information
Showing
3 changed files
with
128 additions
and
2 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
22 changes: 22 additions & 0 deletions
22
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,22 @@ | ||
//@ error-pattern: r#T: 'static | ||
//@ error-pattern: r#K: 'static | ||
//@ error-pattern: T: 'static= | ||
|
||
// 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 r#T); | ||
//~^ ERROR: the parameter type `T` may not live long enough | ||
|
||
struct Far<T | ||
= i32>(&'static r#T); | ||
//~^ ERROR: the parameter type `T` may not live long enough | ||
|
||
fn main() {} |
87 changes: 87 additions & 0 deletions
87
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,87 @@ | ||
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 r#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 r#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 r#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: aborting due to 6 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0310`. |