summaryrefslogtreecommitdiff
path: root/compiler/rustc_hir_typeck/src/expr.rs
diff options
context:
space:
mode:
authorDylan DPC <99973273+Dylan-DPC@users.noreply.github.com>2023-05-17 19:11:55 +0530
committerGitHub <noreply@github.com>2023-05-17 19:11:55 +0530
commit291ced5e9a9cfb423793cf065f873d2171c19c6a (patch)
treed0eccf41d4ebd63b5fdb950e47bd7d67e8f0e95d /compiler/rustc_hir_typeck/src/expr.rs
parent703323e490a6260ab2dd3fdfb6d5db0dde0dc383 (diff)
parentdb645124221a1e2d3e70b14fbedef019e036c066 (diff)
downloadrust-291ced5e9a9cfb423793cf065f873d2171c19c6a.tar.gz
Rollup merge of #111588 - MU001999:diag/improve-e0782, r=fee1-dead
Emits E0599 when meeting `MyTrait::missing_method` Fixes #111312
Diffstat (limited to 'compiler/rustc_hir_typeck/src/expr.rs')
-rw-r--r--compiler/rustc_hir_typeck/src/expr.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_hir_typeck/src/expr.rs b/compiler/rustc_hir_typeck/src/expr.rs
index bba049c3819..8ea159bba74 100644
--- a/compiler/rustc_hir_typeck/src/expr.rs
+++ b/compiler/rustc_hir_typeck/src/expr.rs
@@ -1245,6 +1245,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
error,
Some((rcvr, args)),
expected,
+ false,
) {
err.emit();
}