Closed

Description
Any multiple patterns with the wildcard pattern can be removed as the wildcard will match anyway
match "foo" {
"a" => {
dbg!("matched a");
}
"bar" | _ => {
dbg!("bar or wildcat");
}
}
Should be written as
match "foo" {
"a" => {
dbg!("matched a");
}
_ => {
dbg!("matched (bar or) wildcard");
}
}
cc #1272