We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b131a54 + 789305d commit 11e57acCopy full SHA for 11e57ac
src/set.rs
@@ -1612,8 +1612,7 @@ mod tests {
1612
let set_c: IndexSet<_> = (0..6).collect();
1613
let set_d: IndexSet<_> = (3..9).rev().collect();
1614
1615
- // FIXME: #[allow(clippy::eq_op)] in Rust 1.31
1616
- #[cfg_attr(feature = "cargo-clippy", allow(renamed_and_removed_lints, eq_op))]
+ #[allow(clippy::eq_op)]
1617
{
1618
assert_eq!(&set_a & &set_a, set_a);
1619
assert_eq!(&set_a | &set_a, set_a);
0 commit comments