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