Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
auxiliary
/
issue-9906.rs
blob: 8a3eea790a26ace46469d43c3bc5d30c587eeb09 [
file
] [
log
] [
blame
] [
edit
]
pub
use
other
::
FooBar
;
pub
use
other
::
foo
;
mod
other
{
pub
struct
FooBar
{
value
:
isize
}
impl
FooBar
{
pub
fn
new
(
val
:
isize
)
->
FooBar
{
FooBar
{
value
:
val
}
}
}
pub
fn
foo
(){
1
+
1
;
}
}