mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-19 11:12:43 +00:00
96c4198832
- Wildcard use with other pattern in same match arm
39 lines
694 B
Rust
39 lines
694 B
Rust
// run-rustfix
|
|
|
|
#![warn(clippy::pats_with_wild_match_arm)]
|
|
|
|
fn main() {
|
|
match "foo" {
|
|
"a" => {
|
|
dbg!("matched a");
|
|
},
|
|
_ => {
|
|
dbg!("matched (bar or) wild");
|
|
},
|
|
};
|
|
match "foo" {
|
|
"a" => {
|
|
dbg!("matched a");
|
|
},
|
|
_ => {
|
|
dbg!("matched (bar or bar2 or) wild");
|
|
},
|
|
};
|
|
match "foo" {
|
|
"a" => {
|
|
dbg!("matched a");
|
|
},
|
|
_ => {
|
|
dbg!("matched (bar or) wild");
|
|
},
|
|
};
|
|
match "foo" {
|
|
"a" => {
|
|
dbg!("matched a");
|
|
},
|
|
_ => {
|
|
dbg!("matched (bar or) wild");
|
|
},
|
|
};
|
|
}
|