Spurious "value assigned is never read" warnings during macro expansion #4381
Labels
A-lints
Area: Lints (warnings about flaws in source code) such as unused_mut.
A-syntaxext
Area: Syntax extensions
The following program uses a macro (
mlet!
) to abstract away the declaration of several variables:When compiling this code, I receive this output:
These warnings only appear when using the macros to generate the code. If you run the macro expansion pass (
rustc --pretty expanded
) you see that themlet!
lines turn into the following:Manually replacing the macro lines with these expanded lines does not cause the warnings to be printed upon compilation. Fix the compiler so that these spurious warnings do not occur during macro expansion.
The text was updated successfully, but these errors were encountered: