]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-3763.stderr
Allow combining -Cprofile-generate and -Cpanic=unwind when targeting
[rust.git] / src / test / ui / issues / issue-3763.stderr
1 error[E0616]: field `priv_field` of struct `MyStruct` is private
2   --> $DIR/issue-3763.rs:18:32
3    |
4 LL |     let _woohoo = (&my_struct).priv_field;
5    |                                ^^^^^^^^^^ private field
6
7 error[E0616]: field `priv_field` of struct `MyStruct` is private
8   --> $DIR/issue-3763.rs:21:41
9    |
10 LL |     let _woohoo = (Box::new(my_struct)).priv_field;
11    |                                         ^^^^^^^^^^ private field
12
13 error[E0624]: associated function `happyfun` is private
14   --> $DIR/issue-3763.rs:24:18
15    |
16 LL |     (&my_struct).happyfun();
17    |                  ^^^^^^^^ private associated function
18
19 error[E0624]: associated function `happyfun` is private
20   --> $DIR/issue-3763.rs:26:27
21    |
22 LL |     (Box::new(my_struct)).happyfun();
23    |                           ^^^^^^^^ private associated function
24
25 error[E0616]: field `priv_field` of struct `MyStruct` is private
26   --> $DIR/issue-3763.rs:27:26
27    |
28 LL |     let nope = my_struct.priv_field;
29    |                          ^^^^^^^^^^ private field
30
31 error: aborting due to 5 previous errors
32
33 Some errors have detailed explanations: E0616, E0624.
34 For more information about an error, try `rustc --explain E0616`.