-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Forbid elided lifetimes within const generic parameter types #68143
Merged
bors
merged 3 commits into
rust-lang:master
from
BenLewis-Seequent:const-param-type-elided-lifetime
Jan 14, 2020
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
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,24 @@ | ||
// Elided lifetimes within the type of a const generic parameters is disallowed. This matches the | ||
// behaviour of trait bounds where `fn foo<T: Ord<&u8>>() {}` is illegal. Though we could change | ||
// elided lifetimes within the type of a const generic parameters to be 'static, like elided | ||
// lifetimes within const/static items. | ||
|
||
#![feature(const_generics)] | ||
//~^ WARN the feature `const_generics` is incomplete and may cause the compiler to crash | ||
|
||
struct A<const N: &u8>; | ||
//~^ ERROR `&` without an explicit lifetime name cannot be used here | ||
trait B {} | ||
|
||
impl<const N: &u8> A<N> { //~ ERROR `&` without an explicit lifetime name cannot be used here | ||
fn foo<const M: &u8>(&self) {} | ||
//~^ ERROR `&` without an explicit lifetime name cannot be used here | ||
} | ||
|
||
impl<const N: &u8> B for A<N> {} | ||
//~^ ERROR `&` without an explicit lifetime name cannot be used here | ||
|
||
fn bar<const N: &u8>() {} | ||
//~^ ERROR `&` without an explicit lifetime name cannot be used here | ||
|
||
fn main() {} |
40 changes: 40 additions & 0 deletions
40
src/test/ui/const-generics/const-param-elided-lifetime.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,40 @@ | ||
error[E0637]: `&` without an explicit lifetime name cannot be used here | ||
--> $DIR/const-param-elided-lifetime.rs:9:19 | ||
| | ||
LL | struct A<const N: &u8>; | ||
| ^ explicit lifetime name needed here | ||
|
||
error[E0637]: `&` without an explicit lifetime name cannot be used here | ||
--> $DIR/const-param-elided-lifetime.rs:13:15 | ||
| | ||
LL | impl<const N: &u8> A<N> { | ||
| ^ explicit lifetime name needed here | ||
|
||
error[E0637]: `&` without an explicit lifetime name cannot be used here | ||
--> $DIR/const-param-elided-lifetime.rs:14:21 | ||
| | ||
LL | fn foo<const M: &u8>(&self) {} | ||
| ^ explicit lifetime name needed here | ||
|
||
error[E0637]: `&` without an explicit lifetime name cannot be used here | ||
--> $DIR/const-param-elided-lifetime.rs:18:15 | ||
| | ||
LL | impl<const N: &u8> B for A<N> {} | ||
| ^ explicit lifetime name needed here | ||
|
||
error[E0637]: `&` without an explicit lifetime name cannot be used here | ||
--> $DIR/const-param-elided-lifetime.rs:21:17 | ||
| | ||
LL | fn bar<const N: &u8>() {} | ||
| ^ explicit lifetime name needed here | ||
|
||
warning: the feature `const_generics` is incomplete and may cause the compiler to crash | ||
--> $DIR/const-param-elided-lifetime.rs:6:12 | ||
| | ||
LL | #![feature(const_generics)] | ||
| ^^^^^^^^^^^^^^ | ||
| | ||
= note: `#[warn(incomplete_features)]` on by default | ||
|
||
error: aborting due to 5 previous errors | ||
|
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.
Could you give a brief comment at the top explaining why the behavior is how it is? (Contrast and compare with e.g.
fn foo<T: Ord<&u8>>() {}
.)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 have added that comment. Though I'm not sure what the behaviour should be in the long term, it was the easiest fix(for the ICE) to just disallow elided lifetimes.
I think the only lifetime const generic arguments can have is
'static
, so maybe we should do ''static
lifetime elision'(https://doc.rust-lang.org/reference/lifetime-elision.html#static-lifetime-elision), like what happens for const/static items.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.
It's better to make this an error for now.
Then we'll be able to introduce a
'static
default more explicitly than in some bugfix PR, when const generics are stable and we have more experience with them.(The
'static
default forconst
items actually went through an RFC.)