Skip to content

Commit 1338a45

Browse files
committedMar 19, 2022
Give more details in Display for hir::Target
Made because I was making a code change and got a very confusing "should be applied to a method, not a method" error. ``` error[E0718]: `into_try_type` language item must be applied to a method --> library\core\src\ops\try_trait.rs:352:32 | 352 | #[cfg_attr(not(bootstrap), lang = "into_try_type")] | ^^^^^^^^^^^^^^^^^^^^^^ attribute should be applied to a method, not a method ```
1 parent 3153584 commit 1338a45

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
 

‎compiler/rustc_hir/src/target.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,11 @@ impl Display for Target {
8686
Target::Statement => "statement",
8787
Target::Arm => "match arm",
8888
Target::AssocConst => "associated const",
89-
Target::Method(_) => "method",
89+
Target::Method(kind) => match kind {
90+
MethodKind::Inherent => "inherent method",
91+
MethodKind::Trait { body: false } => "required trait method",
92+
MethodKind::Trait { body: true } => "provided trait method",
93+
},
9094
Target::AssocTy => "associated type",
9195
Target::ForeignFn => "foreign function",
9296
Target::ForeignStatic => "foreign static item",

0 commit comments

Comments
 (0)
Please sign in to comment.