summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/issue-5125/long_parameter_in_different_positions.rs
blob: cab20381ce8f7151359f3b227be6b0f94539ecac (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
fn middle(
    a: usize,
    b: <u16 as intercom::type_system::ExternType<
        intercom::type_system::AutomationTypeSystem,
    >>::ForeignType,
    c: bool,
) {
}

fn last(
    a: usize,
    b: <u16 as intercom::type_system::ExternType<
        intercom::type_system::AutomationTypeSystem,
    >>::ForeignType,
) {
}

fn first(
    a: <u16 as intercom::type_system::ExternType<
        intercom::type_system::AutomationTypeSystem,
    >>::ForeignType,
    b: usize,
) {
}