rust/tests/ui/issues/issue-19100.rs
2023-01-11 09:32:08 +00:00

31 lines
525 B
Rust

// 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 {
&
Bar if true
//~^ WARN pattern binding `Bar` is named the same as one of the variants of the type `Foo`
=> println!("bar"),
&
Baz if false
//~^ WARN pattern binding `Baz` is named the same as one of the variants of the type `Foo`
=> println!("baz"),
_ => ()
}
}
}
fn main() {}