]> git.lizzy.rs Git - rust.git/blob - tests/ui/did_you_mean/issue-93210-ignore-doc-hidden.stderr
Rollup merge of #106638 - RalfJung:realstd, r=thomcc
[rust.git] / tests / ui / did_you_mean / issue-93210-ignore-doc-hidden.stderr
1 error[E0609]: no field `hey` on type `A`
2   --> $DIR/issue-93210-ignore-doc-hidden.rs:15:18
3    |
4 LL |     A::default().hey;
5    |                  ^^^ unknown field
6    |
7    = note: available fields are: `bye`
8
9 error[E0609]: no field `hey` on type `B`
10   --> $DIR/issue-93210-ignore-doc-hidden.rs:20:18
11    |
12 LL |     B::default().hey;
13    |                  ^^^ unknown field
14    |
15    = note: available fields are: `hello`, `bye`
16
17 error: aborting due to 2 previous errors
18
19 For more information about this error, try `rustc --explain E0609`.