Skip to content

Commit 15180d4

Browse files
authored
macro_use_import: Don't check is attribute comes from expansion (#14317)
It is not possible to write a declarative macro, that produces an attribute w/o an item attached to it. This means that the `check_item` will already insert the span in the map, if it came from an expansion. So additionally checking if the macro came from an expansion doesn't add anything here. So the `check_attribute` function, and with that the problematic `attr.span()` call can be completely removed. Fixes #14303 r? @y21 cc @jdonszelmann changelog: Fix ICE in [`macro_use_import`] lint
2 parents 4a9b8c6 + 063d6ae commit 15180d4

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

clippy_lints/src/macro_use.rs

-5
Original file line numberDiff line numberDiff line change
@@ -117,11 +117,6 @@ impl LateLintPass<'_> for MacroUseImports {
117117
self.push_unique_macro_pat_ty(cx, item.span);
118118
}
119119
}
120-
fn check_attribute(&mut self, cx: &LateContext<'_>, attr: &hir::Attribute) {
121-
if attr.span.from_expansion() {
122-
self.push_unique_macro(cx, attr.span);
123-
}
124-
}
125120
fn check_expr(&mut self, cx: &LateContext<'_>, expr: &hir::Expr<'_>) {
126121
if expr.span.from_expansion() {
127122
self.push_unique_macro(cx, expr.span);

tests/ui/crashes/ice-14303.rs

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
//@check-pass
2+
#![warn(clippy::macro_use_imports)]
3+
4+
#[repr(transparent)]
5+
pub struct X(());
6+
7+
#[repr(u8)]
8+
pub enum Action {
9+
Off = 0,
10+
}
11+
12+
fn main() {}

0 commit comments

Comments
 (0)