]> git.proxmox.com Git - rustc.git/blob - src/tools/rustfmt/tests/target/issue-3750.rs
New upstream version 1.52.1+dfsg1
[rustc.git] / src / tools / rustfmt / tests / target / issue-3750.rs
1 // rustfmt-imports_granularity: Crate
2
3 pub mod foo {
4 pub mod bar {
5 pub struct Bar;
6 }
7
8 pub fn bar() {}
9 }
10
11 use foo::{bar, bar::Bar};
12
13 fn main() {
14 bar();
15 }