// rustfmt-imports_granularity: Crate
pub mod foo {
pub mod bar {
pub struct Bar;
}
pub fn bar() {}
use foo::{bar, bar::Bar};
fn main() {
bar();