mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-02 03:33:59 +00:00
43 lines
961 B
Rust
43 lines
961 B
Rust
// Test for issue #67776: binding named the same as enum variant
|
|
// should report a warning even when matching against a reference type
|
|
|
|
// check-pass
|
|
|
|
#![allow(unused_variables)]
|
|
#![allow(non_snake_case)]
|
|
|
|
enum Foo {
|
|
Bar,
|
|
Baz,
|
|
}
|
|
|
|
|
|
fn fn1(e: Foo) {
|
|
match e {
|
|
Bar => {},
|
|
//~^ WARNING named the same as one of the variants of the type `Foo`
|
|
Baz => {},
|
|
//~^ WARNING named the same as one of the variants of the type `Foo`
|
|
}
|
|
}
|
|
|
|
fn fn2(e: &Foo) {
|
|
match e {
|
|
Bar => {},
|
|
//~^ WARNING named the same as one of the variants of the type `Foo`
|
|
Baz => {},
|
|
//~^ WARNING named the same as one of the variants of the type `Foo`
|
|
}
|
|
}
|
|
|
|
fn fn3(e: &mut &&mut Foo) {
|
|
match e {
|
|
Bar => {},
|
|
//~^ WARNING named the same as one of the variants of the type `Foo`
|
|
Baz => {},
|
|
//~^ WARNING named the same as one of the variants of the type `Foo`
|
|
}
|
|
}
|
|
|
|
fn main() {}
|