Sign in
fuchsia
/
third_party
/
rust
/
2a3e17c6d5c49eeb770ade2fa660f98e9cce0ce0
/
.
/
tests
/
ui
/
privacy
/
private-struct-field-pattern.rs
blob: 4a766500e1b91053ce7f7887271ec68c37cded88 [
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 `Foo` is private
}
}