rust-clippy/tests/ui/patterns.fixed

48 lines
922 B
Rust
Raw Normal View History

//@aux-build:proc_macros.rs
2019-09-05 13:45:52 +00:00
#![warn(clippy::all)]
#![allow(unused)]
#![allow(clippy::uninlined_format_args)]
2019-09-05 13:45:52 +00:00
2023-06-23 03:01:17 +00:00
#[macro_use]
extern crate proc_macros;
2019-09-05 13:45:52 +00:00
fn main() {
let v = Some(true);
let s = [0, 1, 2, 3, 4];
match v {
Some(x) => (),
y => (),
}
match v {
Some(x) => (),
y @ None => (), // no error
}
match s {
[x, inside @ .., y] => (), // no error
[..] => (),
}
let mut mutv = vec![1, 2, 3];
// required "ref" left out in suggestion: #5271
match mutv {
ref mut x => {
x.push(4);
println!("vec: {:?}", x);
},
ref y if y == &vec![0] => (),
}
match mutv {
ref x => println!("vec: {:?}", x),
ref y if y == &vec![0] => (),
}
2023-06-23 03:01:17 +00:00
external! {
let v = Some(true);
match v {
Some(x) => (),
y @ _ => (),
}
}
2019-09-05 13:45:52 +00:00
}