summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/issue-3750.rs
blob: 6875f8d3897bfbae6b64ff7207574f0345da1739 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// rustfmt-imports_granularity: Crate

pub mod foo {
    pub mod bar {
        pub struct Bar;
    }

    pub fn bar() {}
}

use foo::{bar, bar::Bar};

fn main() {
    bar();
}