extra-unused-lifetimes should not lint inside macros #8895
Labels
C-bug
Category: Clippy is not doing the correct thing
I-false-positive
Issue: The lint was triggered on code it shouldn't have
I-suggestion-causes-error
Issue: The suggestions provided by this Lint cause an ICE/error when applied
T-macros
Type: Issues with macros and macro expansion
Summary
If we have a macro that generates
impl
s for something, obviously it may look like like the lifetime is unused inside the macro, but it might be used in the macro callsite.clippy warns about
<'tcx>
here but removing it breaks the code.Lint Name
extra-unused-lifetimes
The text was updated successfully, but these errors were encountered: