-
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
Make regionck care about placeholders in outlives components #118000
Merged
bors
merged 1 commit into
rust-lang:master
from
compiler-errors:placeholder-ty-outlives
Nov 20, 2023
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
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
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
14 changes: 14 additions & 0 deletions
14
tests/ui/coherence/negative-coherence-check-placeholder-outlives.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,14 @@ | ||
#![feature(negative_impls)] | ||
#![feature(with_negative_coherence)] | ||
|
||
struct Wrap<T>(T); | ||
|
||
trait Foo {} | ||
impl<T: 'static> !Foo for Box<T> {} | ||
|
||
trait Bar {} | ||
impl<T> Bar for T where T: Foo {} | ||
impl<T> Bar for Box<T> {} | ||
//~^ ERROR conflicting implementations of trait `Bar` for type `Box<_>` | ||
|
||
fn main() {} |
11 changes: 11 additions & 0 deletions
11
tests/ui/coherence/negative-coherence-check-placeholder-outlives.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,11 @@ | ||
error[E0119]: conflicting implementations of trait `Bar` for type `Box<_>` | ||
--> $DIR/negative-coherence-check-placeholder-outlives.rs:11:1 | ||
| | ||
LL | impl<T> Bar for T where T: Foo {} | ||
| ------------------------------ first implementation here | ||
LL | impl<T> Bar for Box<T> {} | ||
| ^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `Box<_>` | ||
|
||
error: aborting due to previous error | ||
|
||
For more information about this error, try `rustc --explain E0119`. |
26 changes: 26 additions & 0 deletions
26
tests/ui/traits/non_lifetime_binders/placeholders-dont-outlive-static.bad.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,26 @@ | ||
warning: the feature `non_lifetime_binders` is incomplete and may not be safe to use and/or cause compiler crashes | ||
--> $DIR/placeholders-dont-outlive-static.rs:6:12 | ||
| | ||
LL | #![feature(non_lifetime_binders)] | ||
| ^^^^^^^^^^^^^^^^^^^^ | ||
| | ||
= note: see issue #108185 <https://github.com/rust-lang/rust/issues/108185> for more information | ||
= note: `#[warn(incomplete_features)]` on by default | ||
|
||
error[E0310]: the placeholder type `!1_"T"` may not live long enough | ||
--> $DIR/placeholders-dont-outlive-static.rs:13:5 | ||
| | ||
LL | foo(); | ||
| ^^^^^ | ||
| | | ||
| the placeholder type `!1_"T"` must be valid for the static lifetime... | ||
| ...so that the type `T` will meet its required lifetime bounds | ||
| | ||
help: consider adding an explicit lifetime bound | ||
| | ||
LL | fn bad() where !1_"T": 'static { | ||
| +++++++++++++++++++++ | ||
|
||
error: aborting due to previous error; 1 warning emitted | ||
|
||
For more information about this error, try `rustc --explain E0310`. |
26 changes: 26 additions & 0 deletions
26
tests/ui/traits/non_lifetime_binders/placeholders-dont-outlive-static.good.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,26 @@ | ||
warning: the feature `non_lifetime_binders` is incomplete and may not be safe to use and/or cause compiler crashes | ||
--> $DIR/placeholders-dont-outlive-static.rs:6:12 | ||
| | ||
LL | #![feature(non_lifetime_binders)] | ||
| ^^^^^^^^^^^^^^^^^^^^ | ||
| | ||
= note: see issue #108185 <https://github.com/rust-lang/rust/issues/108185> for more information | ||
= note: `#[warn(incomplete_features)]` on by default | ||
|
||
error[E0310]: the placeholder type `!1_"T"` may not live long enough | ||
--> $DIR/placeholders-dont-outlive-static.rs:19:5 | ||
| | ||
LL | foo(); | ||
| ^^^^^ | ||
| | | ||
| the placeholder type `!1_"T"` must be valid for the static lifetime... | ||
| ...so that the type `T` will meet its required lifetime bounds | ||
| | ||
help: consider adding an explicit lifetime bound | ||
| | ||
LL | fn good() where for<T> T: 'static, !1_"T": 'static { | ||
| +++++++++++++++++ | ||
|
||
error: aborting due to previous error; 1 warning emitted | ||
|
||
For more information about this error, try `rustc --explain E0310`. |
22 changes: 22 additions & 0 deletions
22
tests/ui/traits/non_lifetime_binders/placeholders-dont-outlive-static.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 @@ | ||
// revisions: good bad | ||
|
||
//[good] known-bug: unknown | ||
// `for<T> T: 'static` doesn't imply itself when processing outlives obligations | ||
|
||
#![feature(non_lifetime_binders)] | ||
//[bad]~^ WARN the feature `non_lifetime_binders` is incomplete | ||
|
||
fn foo() where for<T> T: 'static {} | ||
|
||
#[cfg(bad)] | ||
fn bad() { | ||
foo(); | ||
//[bad]~^ ERROR the placeholder type `!1_"T"` may not live long enough | ||
} | ||
|
||
#[cfg(good)] | ||
fn good() where for<T> T: 'static { | ||
foo(); | ||
} | ||
|
||
fn main() {} |
3 changes: 1 addition & 2 deletions
3
tests/ui/traits/non_lifetime_binders/type-match-with-late-bound.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
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 |
---|---|---|
|
@@ -7,5 +7,20 @@ LL | #![feature(non_lifetime_binders)] | |
= note: see issue #108185 <https://github.com/rust-lang/rust/issues/108185> for more information | ||
= note: `#[warn(incomplete_features)]` on by default | ||
|
||
warning: 1 warning emitted | ||
error[E0309]: the placeholder type `!1_"F"` may not live long enough | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't really care about fixing this diagnostic regression for now, since it's behind a super unstable feature gate. |
||
--> $DIR/type-match-with-late-bound.rs:11:1 | ||
| | ||
LL | async fn walk2<'a, T: 'a>(_: T) | ||
| -- the placeholder type `!1_"F"` must be valid for the lifetime `'a` as defined here... | ||
... | ||
LL | {} | ||
| ^^ ...so that the type `F` will meet its required lifetime bounds | ||
| | ||
help: consider adding an explicit lifetime bound | ||
| | ||
LL | for<F> F: 'a, !1_"F": 'a | ||
| ~~~~~~~~~~~~ | ||
|
||
error: aborting due to previous error; 1 warning emitted | ||
|
||
For more information about this error, try `rustc --explain E0309`. |
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.
This currently fails on nightly for the same root cause as #117994. Only after that PR is this behavior exploitable. I'm just committing this test here, though, since it should not regress.