blob: b3da6092abce8f12413ea185a63b243f15644677 [file] [log] [blame]
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
}
}