blob: 90f40a8d629628ff37ab5766ce7e83e7a11fec5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// 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();
}
|