forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#129250 - estebank:issue-129205, r=compiler-errors 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 rust-lang#128786. Fixes rust-lang#129205 Fixes rust-lang#129216
- Loading branch information
Showing
5 changed files
with
33 additions
and
23 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,6 @@ | ||
// Regression test for https://github.com/rust-lang/rust/issues/129205 | ||
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:3: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`. |