2017-05-13 09:54:50 +00:00
|
|
|
warning: unnecessary parentheses around `return` value
|
2020-07-02 05:32:12 +00:00
|
|
|
--> $DIR/path-lookahead.rs:10:12
|
2017-05-13 09:54:50 +00:00
|
|
|
|
|
2020-07-02 05:32:12 +00:00
|
|
|
LL | return (<T as ToString>::to_string(&arg));
|
2021-09-09 14:22:24 +00:00
|
|
|
| ^ ^
|
2017-05-13 09:54:50 +00:00
|
|
|
|
|
2020-01-22 23:57:38 +00:00
|
|
|
note: the lint level is defined here
|
2020-07-02 05:32:12 +00:00
|
|
|
--> $DIR/path-lookahead.rs:5:9
|
2017-10-20 21:00:57 +00:00
|
|
|
|
|
Use ident instead of def_span in dead-code pass
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.
2019-10-25 18:46:07 +00:00
|
|
|
LL | #![warn(unused_parens)]
|
|
|
|
| ^^^^^^^^^^^^^
|
2021-09-09 14:22:24 +00:00
|
|
|
help: remove these parentheses
|
|
|
|
|
|
|
|
|
LL - return (<T as ToString>::to_string(&arg));
|
|
|
|
LL + return <T as ToString>::to_string(&arg);
|
2022-06-08 17:34:57 +00:00
|
|
|
|
|
2017-05-13 09:54:50 +00:00
|
|
|
|
2020-03-11 15:30:09 +00:00
|
|
|
warning: 1 warning emitted
|
|
|
|
|