mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-18 02:38:28 +00:00
38 lines
979 B
Rust
38 lines
979 B
Rust
|
// run-rustfix
|
||
|
|
||
|
#![warn(clippy::match_single_binding)]
|
||
|
#![allow(unused_variables)]
|
||
|
|
||
|
fn main() {
|
||
|
// Lint (additional curly braces needed, see #6572)
|
||
|
struct AppendIter<I>
|
||
|
where
|
||
|
I: Iterator,
|
||
|
{
|
||
|
inner: Option<(I, <I as Iterator>::Item)>,
|
||
|
}
|
||
|
|
||
|
#[allow(dead_code)]
|
||
|
fn size_hint<I: Iterator>(iter: &AppendIter<I>) -> (usize, Option<usize>) {
|
||
|
match &iter.inner {
|
||
|
Some((iter, _item)) => {
|
||
|
let (min, max) = iter.size_hint();
|
||
|
(min.saturating_add(1), max.and_then(|max| max.checked_add(1)))
|
||
|
},
|
||
|
None => (0, Some(0)),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Lint (no additional curly braces needed)
|
||
|
let opt = Some((5, 2));
|
||
|
let get_tup = || -> (i32, i32) { (1, 2) };
|
||
|
match opt {
|
||
|
#[rustfmt::skip]
|
||
|
Some((first, _second)) => {
|
||
|
let (a, b) = get_tup();
|
||
|
println!("a {:?} and b {:?}", a, b);
|
||
|
},
|
||
|
None => println!("nothing"),
|
||
|
}
|
||
|
}
|