2020-09-02 10:40:56 +03:00
|
|
|
error[E0616]: field `priv_field` of struct `MyStruct` is private
|
2022-09-15 11:29:12 +10:00
|
|
|
--> $DIR/issue-3763.rs:17:32
|
2018-07-15 14:11:54 -07:00
|
|
|
|
|
|
|
|
|
LL | let _woohoo = (&my_struct).priv_field;
|
2020-03-22 11:18:06 -07:00
|
|
|
| ^^^^^^^^^^ private field
|
2018-07-15 14:11:54 -07:00
|
|
|
|
2020-09-02 10:40:56 +03:00
|
|
|
error[E0616]: field `priv_field` of struct `MyStruct` is private
|
2022-09-15 11:29:12 +10:00
|
|
|
--> $DIR/issue-3763.rs:20:41
|
2018-07-15 14:11:54 -07:00
|
|
|
|
|
|
|
|
|
LL | let _woohoo = (Box::new(my_struct)).priv_field;
|
2020-03-22 11:18:06 -07:00
|
|
|
| ^^^^^^^^^^ private field
|
2018-07-15 14:11:54 -07:00
|
|
|
|
2023-02-21 14:11:08 -07:00
|
|
|
error[E0624]: method `happyfun` is private
|
2022-09-15 11:29:12 +10:00
|
|
|
--> $DIR/issue-3763.rs:23:18
|
2018-07-15 14:11:54 -07:00
|
|
|
|
|
2021-07-17 11:13:50 -07:00
|
|
|
LL | fn happyfun(&self) {}
|
2023-02-21 14:11:08 -07:00
|
|
|
| ------------------ private method defined here
|
2021-07-17 11:13:50 -07:00
|
|
|
...
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | (&my_struct).happyfun();
|
2023-02-21 14:11:08 -07:00
|
|
|
| ^^^^^^^^ private method
|
2018-07-15 14:11:54 -07:00
|
|
|
|
2023-02-21 14:11:08 -07:00
|
|
|
error[E0624]: method `happyfun` is private
|
2022-09-15 11:29:12 +10:00
|
|
|
--> $DIR/issue-3763.rs:25:27
|
2018-07-15 14:11:54 -07:00
|
|
|
|
|
2021-07-17 11:13:50 -07:00
|
|
|
LL | fn happyfun(&self) {}
|
2023-02-21 14:11:08 -07:00
|
|
|
| ------------------ private method defined here
|
2021-07-17 11:13:50 -07:00
|
|
|
...
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | (Box::new(my_struct)).happyfun();
|
2023-02-21 14:11:08 -07:00
|
|
|
| ^^^^^^^^ private method
|
2018-07-15 14:11:54 -07:00
|
|
|
|
2020-09-02 10:40:56 +03:00
|
|
|
error[E0616]: field `priv_field` of struct `MyStruct` is private
|
2022-09-15 11:29:12 +10:00
|
|
|
--> $DIR/issue-3763.rs:26:26
|
2018-07-15 14:11:54 -07:00
|
|
|
|
|
|
|
|
|
LL | let nope = my_struct.priv_field;
|
2020-03-22 11:18:06 -07:00
|
|
|
| ^^^^^^^^^^ private field
|
2018-07-15 14:11:54 -07:00
|
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
|
|
|
|
|
2019-04-17 13:26:38 -04:00
|
|
|
Some errors have detailed explanations: E0616, E0624.
|
2018-07-15 14:11:54 -07:00
|
|
|
For more information about an error, try `rustc --explain E0616`.
|