Skip to content

Commit 77c0f21

Browse files
committed
Rebase fallout.
1 parent 38d9d09 commit 77c0f21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/ui-fulldeps/auxiliary/issue-40001-plugin.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ impl<'tcx> LateLintPass<'tcx> for MissingAllowedAttrPass {
4949
};
5050

5151
let allowed = |attr| pprust::attribute_to_string(attr).contains("allowed_attr");
52-
if !cx.tcx.hir().attrs(item.hir_id).iter().any(allowed) {
52+
if !cx.tcx.hir().attrs(item.hir_id()).iter().any(allowed) {
5353
cx.lint(MISSING_ALLOWED_ATTR, |lint| {
5454
lint.build("Missing 'allowed_attr' attribute").set_span(span).emit()
5555
});

0 commit comments

Comments
 (0)