about summary refs log tree commit diff
path: root/tests/ui/privacy/inaccessible-fields-pattern-matching-76077.stderr
blob: 070fa1a53a547390614a48cc01d0a20c06d77323 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
error: pattern requires `..` due to inaccessible fields
  --> $DIR/inaccessible-fields-pattern-matching-76077.rs:14: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/inaccessible-fields-pattern-matching-76077.rs:17: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