rust/tests/ui/issues/issue-19100.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
525 B
Rust
Raw Normal View History

// run-pass
// run-rustfix
#![allow(non_snake_case)]
#![allow(dead_code)]
#![allow(unused_variables)]
2015-03-30 13:38:27 +00:00
#[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() {}