blob: 6dc8f7ddbc9724991d817fb0d27f7e7e2d10d588 [file] [log] [blame]
// run-pass
// run-rustfix
#![allow(non_snake_case)]
#![allow(dead_code)]
#![allow(unused_variables)]
#[derive(Copy, Clone)]
enum Foo {
Bar,
Baz
}
impl Foo {
fn foo(&self) {
match self {
&
Foo::Bar if true
//~^ WARN pattern binding `Bar` is named the same as one of the variants of the type `Foo`
=> println!("bar"),
&
Foo::Baz if false
//~^ WARN pattern binding `Baz` is named the same as one of the variants of the type `Foo`
=> println!("baz"),
_ => ()
}
}
}
fn main() {}