blob: 91ef5ac53295b5d92ab1c8a34936fb630cd394a7 [file] [log] [blame]
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 constant of non-structural type `Foo` in a pattern
_ => {}
}
}