mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
31 lines
577 B
Rust
31 lines
577 B
Rust
// check-pass
|
|
//
|
|
// Check that we don't ignore private fields in usefulness checking
|
|
#![deny(unreachable_patterns)]
|
|
|
|
mod inner {
|
|
#[derive(PartialEq, Eq)]
|
|
pub struct PrivateField {
|
|
pub x: bool,
|
|
y: bool,
|
|
}
|
|
|
|
pub const FOO: PrivateField = PrivateField { x: true, y: true };
|
|
pub const BAR: PrivateField = PrivateField { x: true, y: false };
|
|
}
|
|
use inner::*;
|
|
|
|
fn main() {
|
|
match FOO {
|
|
FOO => {}
|
|
BAR => {}
|
|
_ => {}
|
|
}
|
|
|
|
match FOO {
|
|
FOO => {}
|
|
PrivateField { x: true, .. } => {}
|
|
_ => {}
|
|
}
|
|
}
|