mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
25 lines
690 B
Plaintext
25 lines
690 B
Plaintext
error: pattern requires `..` due to inaccessible fields
|
|
--> $DIR/issue-76077-1.rs:13:9
|
|
|
|
|
LL | let foo::Foo {} = foo::Foo::default();
|
|
| ^^^^^^^^^^^
|
|
|
|
|
help: ignore the inaccessible and unused fields
|
|
|
|
|
LL | let foo::Foo { .. } = foo::Foo::default();
|
|
| ~~~~~~
|
|
|
|
error: pattern requires `..` due to inaccessible fields
|
|
--> $DIR/issue-76077-1.rs:16:9
|
|
|
|
|
LL | let foo::Bar { visible } = foo::Bar::default();
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: ignore the inaccessible and unused fields
|
|
|
|
|
LL | let foo::Bar { visible, .. } = foo::Bar::default();
|
|
| ++++
|
|
|
|
error: aborting due to 2 previous errors
|
|
|