Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
src
/
tools
/
rustfmt
/
tests
/
source
/
issue-3750.rs
blob: 1189a99d2b6d67cabde99808dfd5a7f5c9774ff0 [
file
] [
log
] [
blame
] [
edit
]
// rustfmt-imports_granularity: Crate
pub
mod
foo
{
pub
mod
bar
{
pub
struct
Bar
;
}
pub
fn
bar
()
{}
}
use
foo
::
bar
;
use
foo
::
bar
::
Bar
;
fn
main
()
{
bar
();
}