rust/tests/ui/consts/match_ice.rs
2023-01-11 09:32:08 +00:00

19 lines
297 B
Rust

// https://github.com/rust-lang/rust/issues/53708
struct S;
#[derive(PartialEq, Eq)]
struct T;
fn main() {
const C: &S = &S;
match C {
C => {}
//~^ ERROR must be annotated with `#[derive(PartialEq, Eq)]`
}
const K: &T = &T;
match K {
K => {}
}
}