]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-3763.rs
Auto merge of #51384 - QuietMisdreavus:extern-version, r=GuillaumeGomez
[rust.git] / src / test / ui / issues / issue-3763.rs
1 // Copyright 2012 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 mod my_mod {
12     pub struct MyStruct {
13         priv_field: isize
14     }
15     pub fn MyStruct () -> MyStruct {
16         MyStruct {priv_field: 4}
17     }
18     impl MyStruct {
19         fn happyfun(&self) {}
20     }
21 }
22
23 fn main() {
24     let my_struct = my_mod::MyStruct();
25     let _woohoo = (&my_struct).priv_field;
26     //~^ ERROR field `priv_field` of struct `my_mod::MyStruct` is private
27
28     let _woohoo = (Box::new(my_struct)).priv_field;
29     //~^ ERROR field `priv_field` of struct `my_mod::MyStruct` is private
30
31     (&my_struct).happyfun();               //~ ERROR method `happyfun` is private
32
33     (Box::new(my_struct)).happyfun();          //~ ERROR method `happyfun` is private
34     let nope = my_struct.priv_field;
35     //~^ ERROR field `priv_field` of struct `my_mod::MyStruct` is private
36 }