-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Detect multiple crate versions on method not found #128786
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
b2e7ae1
Detect multiple crate versions on method not found
estebank 5c427b4
reword message
estebank eeb7283
Account for fully-qualified path case of conflicting crate versions
estebank 4e98553
Ignore auto-deref for multiple crate version note
estebank 6105893
Rework suggestion method
estebank 110b19b
Properly differentiate between methods and assoc fns
estebank 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 hidden or 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 hidden or 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 hidden or 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,6 +1,12 @@ | ||
#![crate_name = "dependency"] | ||
#![crate_type = "rlib"] | ||
pub struct Type; | ||
pub trait Trait {} | ||
impl Trait for Type {} | ||
pub struct Type(pub i32); | ||
pub trait Trait { | ||
fn foo(&self); | ||
fn bar(); | ||
} | ||
impl Trait for Type { | ||
fn foo(&self) {} | ||
fn bar() {} | ||
} | ||
pub fn do_something<X: Trait>(_: X) {} |
This file contains hidden or 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,6 +1,12 @@ | ||
#![crate_name = "dependency"] | ||
#![crate_type = "rlib"] | ||
pub struct Type(pub i32); | ||
pub trait Trait {} | ||
impl Trait for Type {} | ||
pub struct Type; | ||
pub trait Trait { | ||
fn foo(&self); | ||
fn bar(); | ||
} | ||
impl Trait for Type { | ||
fn foo(&self) {} | ||
fn bar() {} | ||
} | ||
pub fn do_something<X: Trait>(_: X) {} |
This file contains hidden or 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 @@ | ||
#![crate_name = "foo"] | ||
#![crate_type = "rlib"] | ||
|
||
extern crate dependency; | ||
pub use dependency::Type; |
This file contains hidden or 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,10 @@ | ||
extern crate dep_2_reexport; | ||
extern crate dependency; | ||
use dep_2_reexport::do_something; | ||
use dependency::Type; | ||
use dep_2_reexport::Type; | ||
use dependency::{do_something, Trait}; | ||
|
||
fn main() { | ||
do_something(Type); | ||
Type.foo(); | ||
Type::bar(); | ||
} |
This file contains hidden or 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,26 +1,100 @@ | ||
//@ only-linux | ||
//@ ignore-wasm32 | ||
//@ ignore-wasm64 | ||
// ignore-tidy-linelength | ||
|
||
use run_make_support::{rust_lib_name, rustc}; | ||
|
||
fn main() { | ||
rustc().input("multiple-dep-versions-1.rs").run(); | ||
rustc().input("multiple-dep-versions-2.rs").extra_filename("2").metadata("2").run(); | ||
rustc() | ||
.input("multiple-dep-versions-3.rs") | ||
.extern_("dependency", rust_lib_name("dependency2")) | ||
.run(); | ||
|
||
rustc() | ||
.input("multiple-dep-versions.rs") | ||
.extern_("dependency", rust_lib_name("dependency")) | ||
.extern_("dep_2_reexport", rust_lib_name("dependency2")) | ||
.extern_("dep_2_reexport", rust_lib_name("foo")) | ||
.run_fail() | ||
.assert_stderr_contains( | ||
"you have multiple different versions of crate `dependency` in your dependency graph", | ||
r#"error[E0277]: the trait bound `dep_2_reexport::Type: Trait` is not satisfied | ||
--> multiple-dep-versions.rs:7:18 | ||
| | ||
7 | do_something(Type); | ||
| ------------ ^^^^ the trait `Trait` is not implemented for `dep_2_reexport::Type` | ||
| | | ||
| required by a bound introduced by this call | ||
| | ||
help: there are multiple different versions of crate `dependency` the your dependency graph | ||
--> multiple-dep-versions.rs:1:1 | ||
| | ||
1 | extern crate dep_2_reexport; | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ one version of crate `dependency` is used here, as a dependency of crate `foo` | ||
2 | extern crate dependency; | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^ one version of crate `dependency` is used here, as a direct dependency of the current crate"#, | ||
) | ||
.assert_stderr_contains( | ||
r#" | ||
3 | pub struct Type(pub i32); | ||
| ^^^^^^^^^^^^^^^ this type implements the required trait | ||
4 | pub trait Trait { | ||
| --------------- this is the required trait"#, | ||
) | ||
.assert_stderr_contains( | ||
r#" | ||
3 | pub struct Type; | ||
| ^^^^^^^^^^^^^^^ this type doesn't implement the required trait"#, | ||
) | ||
.assert_stderr_contains( | ||
r#" | ||
error[E0599]: no method named `foo` found for struct `dep_2_reexport::Type` in the current scope | ||
--> multiple-dep-versions.rs:8:10 | ||
| | ||
8 | Type.foo(); | ||
| ^^^ method not found in `Type` | ||
| | ||
note: there are multiple different versions of crate `dependency` in the dependency graph"#, | ||
) | ||
.assert_stderr_contains( | ||
r#" | ||
4 | pub trait Trait { | ||
| ^^^^^^^^^^^^^^^ this is the trait that is needed | ||
5 | fn foo(&self); | ||
| -------------- the method is available for `dep_2_reexport::Type` here | ||
| | ||
::: multiple-dep-versions.rs:4:32 | ||
| | ||
4 | use dependency::{do_something, Trait}; | ||
| ----- `Trait` imported here doesn't correspond to the right version of crate `dependency`"#, | ||
) | ||
.assert_stderr_contains( | ||
"two types coming from two different versions of the same crate are different types \ | ||
even if they look the same", | ||
r#" | ||
4 | pub trait Trait { | ||
| --------------- this is the trait that was imported"#, | ||
) | ||
.assert_stderr_contains("this type doesn't implement the required trait") | ||
.assert_stderr_contains("this type implements the required trait") | ||
.assert_stderr_contains("this is the required trait"); | ||
.assert_stderr_contains( | ||
r#" | ||
error[E0599]: no function or associated item named `bar` found for struct `dep_2_reexport::Type` in the current scope | ||
--> multiple-dep-versions.rs:9:11 | ||
| | ||
9 | Type::bar(); | ||
| ^^^ function or associated item not found in `Type` | ||
| | ||
note: there are multiple different versions of crate `dependency` in the dependency graph"#, | ||
) | ||
.assert_stderr_contains( | ||
r#" | ||
4 | pub trait Trait { | ||
| ^^^^^^^^^^^^^^^ this is the trait that is needed | ||
5 | fn foo(&self); | ||
6 | fn bar(); | ||
| --------- the associated function is available for `dep_2_reexport::Type` here | ||
| | ||
::: multiple-dep-versions.rs:4:32 | ||
| | ||
4 | use dependency::{do_something, Trait}; | ||
| ----- `Trait` imported here doesn't correspond to the right version of crate `dependency`"#, | ||
); | ||
} |
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.
Uh oh!
There was an error while loading. Please reload this page.