| // Regression test for #3763 |
| pub fn MyStruct () -> MyStruct { |
| let my_struct = my_mod::MyStruct(); |
| let _woohoo = (&my_struct).priv_field; |
| //~^ ERROR field `priv_field` of struct `MyStruct` is private |
| let _woohoo = (Box::new(my_struct)).priv_field; |
| //~^ ERROR field `priv_field` of struct `MyStruct` is private |
| (&my_struct).happyfun(); //~ ERROR method `happyfun` is private |
| (Box::new(my_struct)).happyfun(); //~ ERROR method `happyfun` is private |
| let nope = my_struct.priv_field; |
| //~^ ERROR field `priv_field` of struct `MyStruct` is private |