mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-25 14:13:38 +00:00
17 lines
476 B
Rust
17 lines
476 B
Rust
|
//@ aux-build:unstable.rs
|
||
|
|
||
|
extern crate unstable;
|
||
|
|
||
|
use unstable::UnstableStruct;
|
||
|
|
||
|
fn main() {
|
||
|
let UnstableStruct { stable } = UnstableStruct::default();
|
||
|
//~^ pattern does not mention field `stable2` and inaccessible fields
|
||
|
|
||
|
let UnstableStruct { stable, stable2 } = UnstableStruct::default();
|
||
|
//~^ pattern requires `..` due to inaccessible fields
|
||
|
|
||
|
// OK: stable field is matched
|
||
|
let UnstableStruct { stable, stable2, .. } = UnstableStruct::default();
|
||
|
}
|