Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-10545.rs
blob: acd0714961906e5698c439b184d04e8930832309 [
file
] [
log
] [
blame
] [
edit
]
mod
a
{
struct
S
;
impl
S
{
}
}
fn
foo
(
_
:
a
::
S
)
{
//~ ERROR: struct `S` is private
}
fn
main
()
{}