]> git.proxmox.com Git - rustc.git/blame - src/test/ui/privacy/private-struct-field-ctor.rs
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / privacy / private-struct-field-ctor.rs
CommitLineData
223e47cc
LB
1mod a {
2 pub struct Foo {
1a4d82fc 3 x: isize
223e47cc
LB
4 }
5}
6
7fn main() {
1b1a35ee 8 let s = a::Foo { x: 1 }; //~ ERROR field `x` of struct `Foo` is private
223e47cc 9}