Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
use
/
use-mod
/
use-mod-3.rs
blob: 0afa486b9f7a4e658ea41ace1e683eadd03c98d0 [
file
] [
log
] [
blame
] [
edit
]
use
foo
::
bar
::{
//~ ERROR module `bar` is private
self
};
use
foo
::
bar
::{
//~ ERROR module `bar` is private
Bar
};
mod
foo
{
mod
bar
{
pub
type
Bar
=
isize
;
}
}
fn
main
()
{}