mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
26 lines
476 B
Rust
26 lines
476 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)]`
|
|
|
|
_ => {}
|
|
}
|
|
}
|