Sign in
rust
/
rust-lang
/
rust
/
refs/heads/beta
/
.
/
tests
/
ui
/
privacy
/
struct-field-and-impl-expose-10545.rs
blob: 8a8c8240c2d0854f9f2f5bda032f6eb54b491e54 [
file
] [
log
] [
blame
]
//! Regression test for https://github.com/rust-lang/rust/issues/10545
mod
a
{
struct
S
;
impl
S
{
}
}
fn
foo
(
_
:
a
::
S
)
{
//~ ERROR: struct `S` is private
}
fn
main
()
{}