mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
18 lines
240 B
Rust
18 lines
240 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 `Foo` is private
|
|
}
|
|
}
|