Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
auxiliary
/
issue-12660-aux.rs
blob: 6dea8662dfec9920233d91180fa66ed4adb3810c [
file
] [
log
] [
blame
] [
edit
]
#![
crate_type
=
"lib"
]
#![
crate_name
=
"issue12660aux"
]
pub
use
my_mod
::{
MyStruct
,
my_fn
};
mod
my_mod
{
pub
struct
MyStruct
;
pub
fn
my_fn
(
my_struct
:
MyStruct
)
{
}
}