rust/tests/ui/match/unreachable-pattern-if-variant-not-imported-19100.rs
2025-08-04 16:43:53 -04:00

31 lines
566 B
Rust

// https://github.com/rust-lang/rust/issues/19100
//@ 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
//~^ ERROR pattern binding `Bar` is named the same as one of the variants of the type `Foo`
=> println!("bar"),
&
Baz if false
//~^ ERROR pattern binding `Baz` is named the same as one of the variants of the type `Foo`
=> println!("baz"),
_ => ()
}
}
}
fn main() {}