mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
13 lines
429 B
Plaintext
13 lines
429 B
Plaintext
error[E0599]: no method named `dog_age` found for struct `Dog` in the current scope
|
|
--> $DIR/private-field.rs:16:23
|
|
|
|
|
LL | pub struct Dog {
|
|
| -------------- method `dog_age` not found for this struct
|
|
...
|
|
LL | let dog_age = dog.dog_age();
|
|
| ^^^^^^^ private field, not a method
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0599`.
|