]> git.lizzy.rs Git - rust.git/blob - tests/ui/confuse-field-and-method/private-field.stderr
Rollup merge of #106144 - tgross35:patch-1, r=Mark-Simulacrum
[rust.git] / tests / ui / confuse-field-and-method / private-field.stderr
1 error[E0599]: no method named `dog_age` found for struct `Dog` in the current scope
2   --> $DIR/private-field.rs:16:23
3    |
4 LL |     pub struct Dog {
5    |     -------------- method `dog_age` not found for this struct
6 ...
7 LL |     let dog_age = dog.dog_age();
8    |                       ^^^^^^^ private field, not a method
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0599`.