mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
22 lines
432 B
Rust
22 lines
432 B
Rust
#![feature(never_type)]
|
|
#![feature(exhaustive_patterns)]
|
|
|
|
mod private {
|
|
pub struct Private {
|
|
_bot: !,
|
|
pub misc: bool,
|
|
}
|
|
pub const DATA: Option<Private> = None;
|
|
}
|
|
|
|
fn main() {
|
|
match private::DATA {
|
|
//~^ ERROR non-exhaustive patterns: `Some(Private { misc: true, .. })` not covered
|
|
None => {}
|
|
Some(private::Private {
|
|
misc: false,
|
|
..
|
|
}) => {}
|
|
}
|
|
}
|