mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 08:57:30 +00:00
57 lines
1.5 KiB
Rust
57 lines
1.5 KiB
Rust
|
// run-rustfix
|
||
|
|
||
|
#![warn(clippy::manual_map)]
|
||
|
#![allow(clippy::toplevel_ref_arg)]
|
||
|
|
||
|
fn main() {
|
||
|
// Lint. `y` is declared within the arm, so it isn't captured by the map closure
|
||
|
let _ = match Some(0) {
|
||
|
Some(x) => Some({
|
||
|
let y = (String::new(), String::new());
|
||
|
(x, y.0)
|
||
|
}),
|
||
|
None => None,
|
||
|
};
|
||
|
|
||
|
// Don't lint. `s` is borrowed until partway through the arm, but needs to be captured by the map
|
||
|
// closure
|
||
|
let s = Some(String::new());
|
||
|
let _ = match &s {
|
||
|
Some(x) => Some((x.clone(), s)),
|
||
|
None => None,
|
||
|
};
|
||
|
|
||
|
// Don't lint. `s` is borrowed until partway through the arm, but needs to be captured by the map
|
||
|
// closure
|
||
|
let s = Some(String::new());
|
||
|
let _ = match &s {
|
||
|
Some(x) => Some({
|
||
|
let clone = x.clone();
|
||
|
let s = || s;
|
||
|
(clone, s())
|
||
|
}),
|
||
|
None => None,
|
||
|
};
|
||
|
|
||
|
// Don't lint. `s` is borrowed until partway through the arm, but needs to be captured as a mutable
|
||
|
// reference by the map closure
|
||
|
let mut s = Some(String::new());
|
||
|
let _ = match &s {
|
||
|
Some(x) => Some({
|
||
|
let clone = x.clone();
|
||
|
let ref mut s = s;
|
||
|
(clone, s)
|
||
|
}),
|
||
|
None => None,
|
||
|
};
|
||
|
|
||
|
// Lint. `s` is captured by reference, so no lifetime issues.
|
||
|
let s = Some(String::new());
|
||
|
let _ = match &s {
|
||
|
Some(x) => Some({
|
||
|
if let Some(ref s) = s { (x.clone(), s) } else { panic!() }
|
||
|
}),
|
||
|
None => None,
|
||
|
};
|
||
|
}
|