-
-
Notifications
You must be signed in to change notification settings - Fork 101
Closed
Description
#![deny(clippy::shadow_reuse)]
fn main() {
let array = [1, 2, 3];
let _ = quote::quote!(#(#array)*);
}
As seen above, the internal quote!
implementation triggers clippy::shadow_reuse
in downstream projects. To avoid such behaviour, please consider tweaking the codebase or #[allow(clippy::shadow_reuse)]
where applicable.
Metadata
Metadata
Assignees
Labels
No labels