]> git.lizzy.rs Git - rust.git/blob - tests/ui/suggestions/field-access-considering-privacy.stderr
Rollup merge of #107116 - ozkanonur:consolidate-bootstrap-docs, r=jyn514
[rust.git] / tests / ui / suggestions / field-access-considering-privacy.stderr
1 error[E0609]: no field `opts` on type `TyCtxt<'tcx>`
2   --> $DIR/field-access-considering-privacy.rs:29:13
3    |
4 LL |         tcx.opts;
5    |             ^^^^ unknown field
6    |
7 help: one of the expressions' fields has a field of the same name
8    |
9 LL |         tcx.sess.opts;
10    |             +++++
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0609`.