rust/src/test/ui/issues/issue-3763.stderr

35 lines
1.2 KiB
Plaintext
Raw Normal View History

error[E0616]: field `priv_field` of struct `MyStruct` is private
2020-03-22 13:18:06 -05:00
--> $DIR/issue-3763.rs:18:32
2018-07-15 16:11:54 -05:00
|
LL | let _woohoo = (&my_struct).priv_field;
2020-03-22 13:18:06 -05:00
| ^^^^^^^^^^ private field
2018-07-15 16:11:54 -05:00
error[E0616]: field `priv_field` of struct `MyStruct` is private
2020-03-22 13:18:06 -05:00
--> $DIR/issue-3763.rs:21:41
2018-07-15 16:11:54 -05:00
|
LL | let _woohoo = (Box::new(my_struct)).priv_field;
2020-03-22 13:18:06 -05:00
| ^^^^^^^^^^ private field
2018-07-15 16:11:54 -05:00
2020-03-04 21:03:15 -06:00
error[E0624]: associated function `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();
| ^^^^^^^^ private associated function
2018-07-15 16:11:54 -05:00
2020-03-04 21:03:15 -06:00
error[E0624]: associated function `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();
| ^^^^^^^^ private associated function
2018-07-15 16:11:54 -05:00
error[E0616]: field `priv_field` of struct `MyStruct` is private
2020-03-22 13:18:06 -05:00
--> $DIR/issue-3763.rs:27:26
2018-07-15 16:11:54 -05:00
|
LL | let nope = my_struct.priv_field;
2020-03-22 13:18:06 -05:00
| ^^^^^^^^^^ private field
2018-07-15 16:11:54 -05:00
error: aborting due to 5 previous errors
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`.