Skip to content

Commit 391ee79

Browse files
committed
Fix ICE #3747
[Martins Polakovs, John Firebaugh]
1 parent 68114c4 commit 391ee79

File tree

2 files changed

+20
-3
lines changed

2 files changed

+20
-3
lines changed

clippy_lints/src/functions.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Functions {
147147
}
148148

149149
self.check_raw_ptr(cx, unsafety, decl, body, nodeid);
150-
self.check_line_number(cx, span);
150+
self.check_line_number(cx, span, body);
151151
}
152152

153153
fn check_trait_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx hir::TraitItem) {
@@ -178,12 +178,12 @@ impl<'a, 'tcx> Functions {
178178
}
179179
}
180180

181-
fn check_line_number(self, cx: &LateContext<'_, '_>, span: Span) {
181+
fn check_line_number(self, cx: &LateContext<'_, '_>, span: Span, body: &'tcx hir::Body) {
182182
if in_external_macro(cx.sess(), span) {
183183
return;
184184
}
185185

186-
let code_snippet = snippet(cx, span, "..");
186+
let code_snippet = snippet(cx, body.value.span, "..");
187187
let mut line_count: u64 = 0;
188188
let mut in_comment = false;
189189
let mut code_in_line;

tests/ui/crashes/ice-3747.rs

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
/// Test for https://github.com/rust-lang/rust-clippy/issues/3747
2+
3+
macro_rules! a {
4+
( $pub:tt $($attr:tt)* ) => {
5+
$($attr)* $pub fn say_hello() {}
6+
};
7+
}
8+
9+
macro_rules! b {
10+
() => {
11+
a! { pub }
12+
};
13+
}
14+
15+
b! {}
16+
17+
fn main() {}

0 commit comments

Comments
 (0)