summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/fn-args-with-last-line-comment.rs
blob: 27e0e09653eee3a08076480400cdc7bfa55c0a81 (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
// #1587
pub trait X {
    fn a(&self) -> &'static str;
    fn bcd(
        &self,
        c: &str,         // comment on this arg
        d: u16,          // comment on this arg
        e: &Vec<String>, // comment on this arg
    ) -> Box<Q>;
}

// #1595
fn foo(
    arg1: LongTypeName,
    arg2: LongTypeName,
    arg3: LongTypeName,
    arg4: LongTypeName,
    arg5: LongTypeName,
    arg6: LongTypeName,
    arg7: LongTypeName,
    //arg8: LongTypeName,
) {
    // do stuff
}