We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38d9d09 commit 77c0f21Copy full SHA for 77c0f21
src/test/ui-fulldeps/auxiliary/issue-40001-plugin.rs
@@ -49,7 +49,7 @@ impl<'tcx> LateLintPass<'tcx> for MissingAllowedAttrPass {
49
};
50
51
let allowed = |attr| pprust::attribute_to_string(attr).contains("allowed_attr");
52
- if !cx.tcx.hir().attrs(item.hir_id).iter().any(allowed) {
+ if !cx.tcx.hir().attrs(item.hir_id()).iter().any(allowed) {
53
cx.lint(MISSING_ALLOWED_ATTR, |lint| {
54
lint.build("Missing 'allowed_attr' attribute").set_span(span).emit()
55
});
0 commit comments