-
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
Emit warning when bound is trivially false #100090
Closed
compiler-errors
wants to merge
2
commits into
rust-lang:master
from
compiler-errors:trivially-false-bound
Closed
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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
28 changes: 26 additions & 2 deletions
28
src/test/ui/associated-types/bound-lifetime-in-binding-only.ok.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 |
---|---|---|
@@ -1,8 +1,32 @@ | ||
warning: the where-clause bound `for<'a> <Parameterized<'a> as Foo>::Item == &'a i32` is impossible to satisfy | ||
--> $DIR/bound-lifetime-in-binding-only.rs:67:19 | ||
| | ||
LL | fn ok3<T>() where for<'a> Parameterized<'a>: Foo<Item=&'a i32> { | ||
| _- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
LL | | | ||
LL | | | ||
LL | | } | ||
| |_- this item cannot be referenced without causing an error | ||
| | ||
= help: add `#![feature(trivial_bounds)]` to the crate attributes to allow it | ||
|
||
warning: the where-clause bound `for<'a> Parameterized<'a>: Foo` is impossible to satisfy | ||
--> $DIR/bound-lifetime-in-binding-only.rs:67:19 | ||
| | ||
LL | fn ok3<T>() where for<'a> Parameterized<'a>: Foo<Item=&'a i32> { | ||
| _- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
LL | | | ||
LL | | | ||
LL | | } | ||
| |_- this item cannot be referenced without causing an error | ||
| | ||
= help: add `#![feature(trivial_bounds)]` to the crate attributes to allow it | ||
|
||
error: fatal error triggered by #[rustc_error] | ||
--> $DIR/bound-lifetime-in-binding-only.rs:71:1 | ||
--> $DIR/bound-lifetime-in-binding-only.rs:73:1 | ||
| | ||
LL | fn main() { } | ||
| ^^^^^^^^^ | ||
|
||
error: aborting due to previous error | ||
error: aborting due to previous error; 2 warnings emitted | ||
|
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,14 @@ | ||
warning: the where-clause bound `<T as Broken>::Assoc: Foo` is impossible to satisfy | ||
--> $DIR/issue-69398.rs:14:28 | ||
| | ||
LL | fn broken(&self) where Self::Assoc: Foo { | ||
| _____- ^^^^^^^^^^^^^^^^ | ||
LL | | | ||
LL | | let _x: <Self::Assoc as Foo>::Bar; | ||
LL | | } | ||
| |_____- this item cannot be referenced without causing an error | ||
| | ||
= help: add `#![feature(trivial_bounds)]` to the crate attributes to allow it | ||
|
||
warning: 1 warning emitted | ||
|
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,26 @@ | ||
warning: the where-clause bound `[for<'r> fn(&'r ())]: Copy` is impossible to satisfy | ||
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. This is certainly not great. |
||
--> $DIR/issue-67696-const-prop-ice.rs:13:33 | ||
| | ||
LL | fn foo(&self) -> Self where Self: Copy { *(&[] as &[_]) } | ||
| ----------------------------^^^^^^^^^^------------------- this item cannot be referenced without causing an error | ||
| | ||
= help: add `#![feature(trivial_bounds)]` to the crate attributes to allow it | ||
|
||
warning: the where-clause bound `[for<'r> fn(&'r ())]: Clone` is impossible to satisfy | ||
--> $DIR/issue-67696-const-prop-ice.rs:13:33 | ||
| | ||
LL | fn foo(&self) -> Self where Self: Copy { *(&[] as &[_]) } | ||
| ----------------------------^^^^^^^^^^------------------- this item cannot be referenced without causing an error | ||
| | ||
= help: add `#![feature(trivial_bounds)]` to the crate attributes to allow it | ||
|
||
warning: the where-clause bound `[for<'r> fn(&'r ())]: Sized` is impossible to satisfy | ||
--> $DIR/issue-67696-const-prop-ice.rs:13:33 | ||
| | ||
LL | fn foo(&self) -> Self where Self: Copy { *(&[] as &[_]) } | ||
| ----------------------------^^^^^^^^^^------------------- this item cannot be referenced without causing an error | ||
| | ||
= help: add `#![feature(trivial_bounds)]` to the crate attributes to allow it | ||
|
||
warning: 3 warnings emitted | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
warning: the where-clause bound `<T as Broken>::Assoc: Foo` is impossible to satisfy | ||
--> $DIR/issue-36839.rs:14:28 | ||
| | ||
LL | fn broken(&self) where Self::Assoc: Foo { | ||
| _____- ^^^^^^^^^^^^^^^^ | ||
LL | | | ||
LL | | let _x: <Self::Assoc as Foo>::Bar; | ||
LL | | } | ||
| |_____- this item cannot be referenced without causing an error | ||
| | ||
= help: add `#![feature(trivial_bounds)]` to the crate attributes to allow it | ||
|
||
warning: 1 warning emitted | ||
|
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
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.
It's a bit unfortunate that the bound we say is not the bound that's written.