mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-30 10:45:18 +00:00
26 lines
483 B
Rust
26 lines
483 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, Eq)]`
|
|
|
|
_ => {}
|
|
}
|
|
|
|
match None {
|
|
<Defaulted as consts::AssocConst>::SOME => panic!(),
|
|
//~^ must be annotated with `#[derive(PartialEq, Eq)]`
|
|
|
|
_ => {}
|
|
}
|
|
}
|