-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Do not ICE on non-ADT rcvr type when looking for crate version collision
When looking for multiple versions of the same crate, do not blindly construct the receiver type. Follow up to #128786. Fix #129205.
- Loading branch information
Showing
3 changed files
with
36 additions
and
4 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
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,5 @@ | ||
fn x<T: Copy>() { | ||
T::try_from(); //~ ERROR E0599 | ||
} | ||
|
||
fn main() {} |
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,19 @@ | ||
error[E0599]: no function or associated item named `try_from` found for type parameter `T` in the current scope | ||
--> $DIR/missing-method-on-type-parameter.rs:2:8 | ||
| | ||
LL | fn x<T: Copy>() { | ||
| - function or associated item `try_from` not found for this type parameter | ||
LL | T::try_from(); | ||
| ^^^^^^^^ function or associated item not found in `T` | ||
| | ||
= help: items from traits can only be used if the trait is in scope | ||
help: there is an associated function `from` with a similar name | ||
--> $SRC_DIR/core/src/convert/mod.rs:LL:COL | ||
help: trait `TryFrom` which provides `try_from` is implemented but not in scope; perhaps you want to import it | ||
| | ||
LL + use std::convert::TryFrom; | ||
| | ||
|
||
error: aborting due to 1 previous error | ||
|
||
For more information about this error, try `rustc --explain E0599`. |