]> git.lizzy.rs Git - rust.git/blob - tests/ui/privacy/private-struct-field.stderr
Auto merge of #106780 - flip1995:clippyup, r=Manishearth
[rust.git] / tests / ui / privacy / private-struct-field.stderr
1 error[E0616]: field `meows` of struct `Cat` is private
2   --> $DIR/private-struct-field.rs:13:21
3    |
4 LL |     assert_eq!(nyan.meows, 52);
5    |                     ^^^^^ private field
6
7 error: aborting due to previous error
8
9 For more information about this error, try `rustc --explain E0616`.