rust/tests/ui/consts/const_in_pattern/cross-crate-fail.rs
2024-01-24 07:56:23 +01:00

26 lines
475 B
Rust

// aux-build:consts.rs
#![warn(indirect_structural_match)]
extern crate consts;
struct Defaulted;
impl consts::AssocConst for Defaulted {}
fn main() {
let _ = Defaulted;
match None {
consts::SOME => panic!(),
//~^ must be annotated with `#[derive(PartialEq)]`
_ => {}
}
match None {
<Defaulted as consts::AssocConst>::SOME => panic!(),
//~^ must be annotated with `#[derive(PartialEq)]`
_ => {}
}
}