summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/imports_granularity_one.rs
blob: da4c6678db149bf6c2f3c5ba82c3161aaec43764 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
// rustfmt-imports_granularity: One

use {
    a::{
        aa::*,
        ab,
        ac::{aca, acb},
    },
    b,
};

use {
    a::{self as x, aa, ab},
    b::ba,
};

use a::{
    aa::{aaa, *},
    ab::aba as x,
};

#[cfg(test)]
use a::{ab, ac::aca};
#[cfg(test)]
use b::{
    ba, bb,
    bc::bca::{bcaa, bcab},
};
use {
    a::{aa, ad::ada},
    b,
};

pub use {
    a::{aa, ae},
    b::{bb, bc::bca},
};
use {
    a::{ab, ac, ad},
    b::ba,
};

use {
    a::{
        aa::{aaa, *},
        ab,
        ac::{aca, acb},
    },
    b::{
        ba,
        bb::{self, bba},
    },
};

use {
    crate::{a, b::ba},
    c::ca,
};

use {
    super::{a, b::ba},
    c::ca,
};

use {
    super::b,
    crate::a,
    c::{self, ca},
};

use a::{
    // some comment
    aa::{aaa, aab},
    ab,
    // another comment
    ac::aca,
};
use {a::ad::ada, b as x};

use b::q::{self /* After b::q::self */};
use b::r; // After b::r
use b::s::{
    a,
    b, // After b::s::b
};
use b::t::{/* Before b::t::self */ self};
use b::t::{
    // Before b::t::a
    a,
    b,
};
use b::v::{
    // Before b::v::a
    a,
    // Before b::v::b
    b,
};
use b::{
    c, d, e,
    u::{a, b},
};
use b::{
    f::g,
    h::{i, j}, /* After b::h group */
};
use b::{
    /* Before b::l group */ l::{self, m, n::o, p::*},
    q,
};