Sign in
rust
/
rust
/
a5a286df89146c64afebc6dcbbd3f61ba67ae53b
/
.
/
tests
/
ui
/
privacy
/
struct-field-type.rs
blob: 6a4a19297e190b91f09d471d304a007332385dd7 [
file
]
mod
m
{
struct
Priv
;
pub
type
Leak
=
Priv
;
//~ WARN: `Priv` is more private than the item `Leak`
}
struct
S
{
field
:
m
::
Leak
,
//~ ERROR: `Priv` is private
}
fn
main
()
{}