mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
26 lines
476 B
Rust
26 lines
476 B
Rust
#![warn(indirect_structural_match)]
|
|
|
|
struct NoEq;
|
|
|
|
enum Foo {
|
|
Bar,
|
|
Baz,
|
|
Qux(NoEq),
|
|
}
|
|
|
|
// Even though any of these values can be compared structurally, we still disallow it in a pattern
|
|
// because `Foo` does not impl `PartialEq`.
|
|
const BAR_BAZ: Foo = if 42 == 42 {
|
|
Foo::Baz
|
|
} else {
|
|
Foo::Bar
|
|
};
|
|
|
|
fn main() {
|
|
match Foo::Qux(NoEq) {
|
|
BAR_BAZ => panic!(),
|
|
//~^ ERROR must be annotated with `#[derive(PartialEq, Eq)]`
|
|
_ => {}
|
|
}
|
|
}
|