rust/tests/target/fn-custom.rs

20 lines
482 B
Rust
Raw Normal View History

2019-06-03 08:26:48 -05:00
// rustfmt-fn_args_layout: Compressed
2015-09-01 00:06:41 -05:00
// Test some of the ways function signatures can be customised.
// Test compressed layout of args.
2017-06-11 23:01:41 -05:00
fn foo(
a: Aaaaaaaaaaaaaaa, b: Bbbbbbbbbbbbbbbb, c: Ccccccccccccccccc, d: Ddddddddddddddddddddddddd,
e: Eeeeeeeeeeeeeeeeeee,
2017-06-11 23:01:41 -05:00
) {
2015-09-01 00:06:41 -05:00
foo();
}
impl Foo {
2017-06-11 23:01:41 -05:00
fn foo(
self, a: Aaaaaaaaaaaaaaa, b: Bbbbbbbbbbbbbbbb, c: Ccccccccccccccccc,
d: Ddddddddddddddddddddddddd, e: Eeeeeeeeeeeeeeeeeee,
2017-06-11 23:01:41 -05:00
) {
2015-09-01 00:06:41 -05:00
foo();
}
}