summary refs log tree commit diff
path: root/src/test/compile-fail/private-struct-field-ctor.rs
blob: a766a7ed66adca4fb7f11e96c1f36c45f07f2e5f (plain)
1
2
3
4
5
6
7
8
9
10
11
mod a {
    #[legacy_exports];
    struct Foo {
        priv x: int
    }
}

fn main() {
    let s = a::Foo { x: 1 };    //~ ERROR field `x` is private
}