2018-07-15 16:11:54 -05:00
|
|
|
error[E0616]: field `priv_field` of struct `my_mod::MyStruct` is private
|
2020-02-24 09:21:45 -06:00
|
|
|
--> $DIR/issue-3763.rs:18:19
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
LL | let _woohoo = (&my_struct).priv_field;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error[E0616]: field `priv_field` of struct `my_mod::MyStruct` is private
|
2020-02-24 09:21:45 -06:00
|
|
|
--> $DIR/issue-3763.rs:21:19
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
LL | let _woohoo = (Box::new(my_struct)).priv_field;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error[E0624]: method `happyfun` is private
|
2020-02-24 09:21:45 -06:00
|
|
|
--> $DIR/issue-3763.rs:24:18
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | (&my_struct).happyfun();
|
2018-07-15 16:11:54 -05:00
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
error[E0624]: method `happyfun` is private
|
2020-02-24 09:21:45 -06:00
|
|
|
--> $DIR/issue-3763.rs:26:27
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | (Box::new(my_struct)).happyfun();
|
2018-07-15 16:11:54 -05:00
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
error[E0616]: field `priv_field` of struct `my_mod::MyStruct` is private
|
2020-02-24 09:21:45 -06:00
|
|
|
--> $DIR/issue-3763.rs:27:16
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
LL | let nope = my_struct.priv_field;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
|
|
|
|
2019-04-17 12:26:38 -05:00
|
|
|
Some errors have detailed explanations: E0616, E0624.
|
2018-07-15 16:11:54 -05:00
|
|
|
For more information about an error, try `rustc --explain E0616`.
|