rust/src/test/compile-fail/private-struct-field-pattern.rs

19 lines
220 B
Rust
Raw Normal View History

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