summary refs log tree commit diff
path: root/src/test/ui/error-codes/ex-E0611.rs
blob: 8460341c44e5175731d174580a4686175253a314 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
mod a {
    pub struct Foo(u32);

    impl Foo {
        pub fn new() -> Foo { Foo(0) }
    }
}

fn main() {
   let y = a::Foo::new();
   y.0; //~ ERROR field `0` of struct `a::Foo` is private
}