mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-18 18:58:45 +00:00
6396b8fb7f
This commit fixes the file names of the `flat_map_identity` test. Previously, their names were started with `unnecessary_flat_map` even though the lint rule name is `flat_map_identity`. This inconsistency happened probably because the rule name was changed during the discussion in the PR where this rule was introduced. ref: https://github.com/rust-lang/rust-clippy/pull/4231
14 lines
281 B
Rust
14 lines
281 B
Rust
// run-rustfix
|
|
|
|
#![allow(unused_imports)]
|
|
#![warn(clippy::flat_map_identity)]
|
|
|
|
use std::convert;
|
|
|
|
fn main() {
|
|
let iterator = [[0, 1], [2, 3], [4, 5]].iter();
|
|
let _ = iterator.flatten();
|
|
|
|
let iterator = [[0, 1], [2, 3], [4, 5]].iter();
|
|
let _ = iterator.flatten();
|
|
}
|