2017-05-11 13:38:26 +09:00
|
|
|
// rustfmt-error_on_line_overflow: false
|
2017-11-13 16:09:59 +09:00
|
|
|
// rustfmt-indent_style: Block
|
2017-05-11 13:38:26 +09:00
|
|
|
|
|
|
|
// rustfmt should not add trailing comma when rewriting macro. See #1528.
|
|
|
|
fn a() {
|
2017-11-11 23:16:12 +09:00
|
|
|
panic!("this is a long string that goes past the maximum line length causing rustfmt to insert a comma here:");
|
2017-05-23 12:03:04 +09:00
|
|
|
foo(
|
2017-09-19 11:41:50 +09:00
|
|
|
a,
|
2017-05-23 12:03:04 +09:00
|
|
|
oooptoptoptoptptooptoptoptoptptooptoptoptoptptoptoptoptoptpt(),
|
|
|
|
);
|
2017-05-11 13:38:26 +09:00
|
|
|
}
|