Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
privacy
/
issue-13641.rs
blob: 198cea4289cfca215e091cb235d66653aeeac9b3 [
file
] [
log
] [
blame
] [
edit
]
mod
a
{
struct
Foo
;
impl
Foo
{
pub
fn
new
()
{}
}
enum
Bar
{}
impl
Bar
{
pub
fn
new
()
{}
}
}
fn
main
()
{
a
::
Foo
::
new
();
//~^ ERROR: struct `Foo` is private
a
::
Bar
::
new
();
//~^ ERROR: enum `Bar` is private
}