rust/tests/target/fn-args-with-last-line-comment.rs

25 lines
480 B
Rust
Raw Normal View History

// #1587
pub trait X {
fn a(&self) -> &'static str;
2017-06-12 06:01:41 +02:00
fn bcd(
&self,
2017-07-05 18:03:20 +02:00
c: &str, // comment on this arg
d: u16, // comment on this arg
2017-06-12 06:01:41 +02:00
e: &Vec<String>, // comment on this arg
) -> Box<Q>;
}
// #1595
2017-06-12 06:01:41 +02:00
fn foo(
arg1: LongTypeName,
arg2: LongTypeName,
arg3: LongTypeName,
arg4: LongTypeName,
arg5: LongTypeName,
arg6: LongTypeName,
arg7: LongTypeName,
2017-11-23 04:39:00 +01:00
//arg8: LongTypeName,
2017-06-12 06:01:41 +02:00
) {
// do stuff
}