rust/tests/ui/consts/const_in_pattern/no-eq-branch-fail.rs

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

24 lines
435 B
Rust
Raw Normal View History

2020-04-07 14:11:29 -05:00
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!(),
2023-09-26 02:39:41 -05:00
//~^ ERROR must be annotated with `#[derive(PartialEq)]`
2020-04-07 14:11:29 -05:00
_ => {}
}
}