]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/issue-3750.rs
Sync rust-lang/portable-simd@03f6fbb21e6050da2a05b3ce8f480c020b384916
[rust.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 }