diff options
Diffstat (limited to 'tests/ui/privacy/private-struct-field-pattern.rs')
-rw-r--r-- | tests/ui/privacy/private-struct-field-pattern.rs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/ui/privacy/private-struct-field-pattern.rs b/tests/ui/privacy/private-struct-field-pattern.rs new file mode 100644 index 000000000..4a766500e --- /dev/null +++ b/tests/ui/privacy/private-struct-field-pattern.rs @@ -0,0 +1,17 @@ +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 + } +} |