Skip to content

Commit f97a50d

Browse files
authored
Unrolled build for rust-lang#131702
Rollup merge of rust-lang#131702 - compiler-errors:method-lookup-trait-warning, r=jieyouxu Suppress import errors for traits that couldve applied for method lookup error Self-explanatory. I hit this quite often when refactoring in rustc, so even though this isn't really showing up as significant in the UI test suite, it probably will matter more for multi-module projects.
2 parents 00367d5 + c3b696d commit f97a50d

File tree

4 files changed

+46
-0
lines changed

4 files changed

+46
-0
lines changed

compiler/rustc_hir_typeck/src/method/mod.rs

+2
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,8 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
199199
self_ty, segment, span, call_expr, self_expr, &pick, args,
200200
);
201201

202+
// NOTE: on the failure path, we also record the possibly-used trait methods
203+
// since an unused import warning is kinda distracting from the method error.
202204
for &import_id in &pick.import_ids {
203205
debug!("used_trait_import: {:?}", import_id);
204206
self.typeck_results.borrow_mut().used_trait_imports.insert(import_id);

compiler/rustc_hir_typeck/src/method/suggest.rs

+8
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,14 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
191191
expected: Expectation<'tcx>,
192192
trait_missing_method: bool,
193193
) -> ErrorGuaranteed {
194+
// NOTE: Reporting a method error should also suppress any unused trait errors,
195+
// since the method error is very possibly the reason why the trait wasn't used.
196+
for &import_id in
197+
self.tcx.in_scope_traits(call_id).into_iter().flatten().flat_map(|c| &c.import_ids)
198+
{
199+
self.typeck_results.borrow_mut().used_trait_imports.insert(import_id);
200+
}
201+
194202
let (span, sugg_span, source, item_name, args) = match self.tcx.hir_node(call_id) {
195203
hir::Node::Expr(&hir::Expr {
196204
kind: hir::ExprKind::MethodCall(segment, rcvr, args, _),
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// Test that we don't issue an unused import warning when there's
2+
// a method lookup error and that trait was possibly applicable.
3+
4+
use foo::Bar;
5+
6+
mod foo {
7+
pub trait Bar {
8+
fn uwu(&self) {}
9+
}
10+
}
11+
12+
struct Foo;
13+
14+
fn main() {
15+
Foo.uwu();
16+
//~^ ERROR no method named `uwu` found for struct `Foo` in the current scope
17+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
error[E0599]: no method named `uwu` found for struct `Foo` in the current scope
2+
--> $DIR/unused-trait-with-method-err.rs:15:9
3+
|
4+
LL | struct Foo;
5+
| ---------- method `uwu` not found for this struct
6+
...
7+
LL | Foo.uwu();
8+
| ^^^ method not found in `Foo`
9+
|
10+
= help: items from traits can only be used if the trait is implemented and in scope
11+
note: `Bar` defines an item `uwu`, perhaps you need to implement it
12+
--> $DIR/unused-trait-with-method-err.rs:7:5
13+
|
14+
LL | pub trait Bar {
15+
| ^^^^^^^^^^^^^
16+
17+
error: aborting due to 1 previous error
18+
19+
For more information about this error, try `rustc --explain E0599`.

0 commit comments

Comments
 (0)