summary refs log tree commit diff
path: root/src/test/ui/issues/issue-3763.stderr
blob: f37b923d5dcfb872de014c00273b61f63b928db8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
error[E0616]: field `priv_field` of struct `my_mod::MyStruct` is private
  --> $DIR/issue-3763.rs:15:19
   |
LL |     let _woohoo = (&my_struct).priv_field;
   |                   ^^^^^^^^^^^^^^^^^^^^^^^

error[E0616]: field `priv_field` of struct `my_mod::MyStruct` is private
  --> $DIR/issue-3763.rs:18:19
   |
LL |     let _woohoo = (Box::new(my_struct)).priv_field;
   |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error[E0624]: method `happyfun` is private
  --> $DIR/issue-3763.rs:21:18
   |
LL |     (&my_struct).happyfun();               //~ ERROR method `happyfun` is private
   |                  ^^^^^^^^

error[E0624]: method `happyfun` is private
  --> $DIR/issue-3763.rs:23:27
   |
LL |     (Box::new(my_struct)).happyfun();          //~ ERROR method `happyfun` is private
   |                           ^^^^^^^^

error[E0616]: field `priv_field` of struct `my_mod::MyStruct` is private
  --> $DIR/issue-3763.rs:24:16
   |
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`.