summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/source/fn-custom.rs
blob: 64ef0ecfaae49f4d1219d98856d9df5d7d3147d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// rustfmt-fn_params_layout: Compressed
// Test some of the ways function signatures can be customised.

// Test compressed layout of args.
fn foo(a: Aaaaaaaaaaaaaaa, b: Bbbbbbbbbbbbbbbb, c: Ccccccccccccccccc, d: Ddddddddddddddddddddddddd, e: Eeeeeeeeeeeeeeeeeee) {
    foo();
}

impl Foo {
    fn foo(self, a: Aaaaaaaaaaaaaaa, b: Bbbbbbbbbbbbbbbb, c: Ccccccccccccccccc, d: Ddddddddddddddddddddddddd, e: Eeeeeeeeeeeeeeeeeee) {
        foo();
    }    
}