Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resolve duplicated_attributes clippy lint in test
warning: duplicated attribute --> tests/common/mod.rs:1:10 | 1 | #![allow(dead_code)] | ^^^^^^^^^ | note: first defined here --> tests/test_precedence.rs:55:9 | 55 | #[allow(dead_code)] | ^^^^^^^^^ help: remove this attribute --> tests/common/mod.rs:1:10 | 1 | #![allow(dead_code)] | ^^^^^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#duplicated_attributes = note: `-W clippy::duplicated-attributes` implied by `-W clippy::all` = help: to override `-W clippy::all` add `#[allow(clippy::duplicated_attributes)]` warning: duplicated attribute --> tests/common/mod.rs:1:10 | 1 | #![allow(dead_code)] | ^^^^^^^^^ | note: first defined here --> tests/test_round_trip.rs:47:9 | 47 | #[allow(dead_code)] | ^^^^^^^^^ help: remove this attribute --> tests/common/mod.rs:1:10 | 1 | #![allow(dead_code)] | ^^^^^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#duplicated_attributes = note: `-W clippy::duplicated-attributes` implied by `-W clippy::all` = help: to override `-W clippy::all` add `#[allow(clippy::duplicated_attributes)]`
- Loading branch information