summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/configs/chain_width/small.rs
blob: 2f2f72777f8ba2dc33d2d2ebf73d0074f2b052f8 (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
// rustfmt-chain_width: 40

struct Fluent {}

impl Fluent {
    fn blorp(&self) -> &Self {
        self
    }
}

fn main() {
    let test = Fluent {};

    // should not be wrapped
    test.blorp();
    test.blorp().blorp();
    test.blorp().blorp().blorp();
    test.blorp().blorp().blorp().blorp();

    // should be wrapped
    test.blorp()
        .blorp()
        .blorp()
        .blorp()
        .blorp();
    test.blorp()
        .blorp()
        .blorp()
        .blorp()
        .blorp()
        .blorp();
}