]> git.proxmox.com Git - rustc.git/blob - src/test/ui/suggestions/field-access-considering-privacy.stderr
Update unsuspicious file list
[rustc.git] / src / test / 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`.