Sign in
rust
/
rustfmt
/
HEAD
/
.
/
tests
/
target
/
issue-3750.rs
blob: 6875f8d3897bfbae6b64ff7207574f0345da1739 [
file
] [
log
] [
blame
]
// rustfmt-imports_granularity: Crate
pub
mod
foo
{
pub
mod
bar
{
pub
struct
Bar
;
}
pub
fn
bar
()
{}
}
use
foo
::{
bar
,
bar
::
Bar
};
fn
main
()
{
bar
();
}