7985510e37
According to @estebank, def_span scans forward on the line until it finds a {, and if it can't find one, fallse back to the span for the whole item. This was apparently written before the identifier span was explicitly tracked on each node. This means that if an unused function signature spans multiple lines, the entire function (potentially hundreds of lines) gets flagged as dead code. This could, for example, cause IDEs to add error squiggly's to the whole function. By using the span from the ident instead, we narrow the scope of this in most cases. In a wider sense, it's probably safe to use ident.span instead of def_span in most locations throughout the whole code base, but since this is my first contribution, I kept it small. Some interesting points that came up while I was working on this: - I reorganized the tests a bit to bring some of the dead code ones all into the same location - A few tests were for things unrelated to dead code (like the path-lookahead for parens), so I added #![allow(dead_code)] and cleaned up the stderr file to reduce noise in the future - The same fix doesn't apply to const and static declarations. I tried adding these cases to the match expression, but that created a much wider change to tests and error messages, so I left it off until I could get some code review to validate the approach.
31 lines
365 B
Rust
31 lines
365 B
Rust
// run-pass
|
|
|
|
#![warn(unused)]
|
|
|
|
enum Enum { //~ WARN enum is never used
|
|
A,
|
|
B,
|
|
C,
|
|
D,
|
|
}
|
|
|
|
struct Struct { //~ WARN struct is never constructed
|
|
a: usize,
|
|
b: usize,
|
|
c: usize,
|
|
d: usize,
|
|
}
|
|
|
|
fn func() -> usize { //~ WARN function is never used
|
|
3
|
|
}
|
|
|
|
fn
|
|
func_complete_span() //~ WARN function is never used
|
|
-> usize
|
|
{
|
|
3
|
|
}
|
|
|
|
fn main() {}
|