rust/src/test/ui/privacy/private-struct-field-pattern.rs
2018-12-25 21:08:33 -07:00

18 lines
243 B
Rust

use a::Foo;
mod a {
pub struct Foo {
x: isize
}
pub fn make() -> Foo {
Foo { x: 3 }
}
}
fn main() {
match a::make() {
Foo { x: _ } => {} //~ ERROR field `x` of struct `a::Foo` is private
}
}