Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
privacy
/
auxiliary
/
issue-75907.rs
blob: 389c9c35101ab4367eee05aeda41003eb3487b3d [
file
] [
log
] [
blame
] [
edit
]
pub
struct
Bar
(
pub
u8
,
u8
,
u8
);
pub
fn
make_bar
()
->
Bar
{
Bar
(
1
,
12
,
10
)
}
mod
inner
{
pub
struct
Foo
(
u8
,
pub
u8
,
u8
);
impl
Foo
{
pub
fn
new
()
->
Foo
{
Foo
(
1
,
12
,
10
)
}
}
}
pub
use
inner
::
Foo
;