mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
19 lines
456 B
Rust
19 lines
456 B
Rust
// run-rustfix
|
|
#![allow(dead_code, unused_variables)]
|
|
|
|
pub mod foo {
|
|
#[derive(Default)]
|
|
pub struct Foo { invisible: bool, }
|
|
|
|
#[derive(Default)]
|
|
pub struct Bar { pub visible: bool, invisible: bool, }
|
|
}
|
|
|
|
fn main() {
|
|
let foo::Foo {} = foo::Foo::default();
|
|
//~^ ERROR pattern requires `..` due to inaccessible fields
|
|
|
|
let foo::Bar { visible } = foo::Bar::default();
|
|
//~^ ERROR pattern requires `..` due to inaccessible fields
|
|
}
|