131 lines
2.1 KiB
Rust
131 lines
2.1 KiB
Rust
// rustfmt-fn_args_layout: Block
|
|
|
|
fn foo() {
|
|
foo();
|
|
}
|
|
|
|
fn foo(a: Aaaaaaaaaaaaaa, b: Bbbbbbbbbbbbbb) {
|
|
foo();
|
|
}
|
|
|
|
fn bar(
|
|
a: Aaaaaaaaaaaaaa,
|
|
b: Bbbbbbbbbbbbbb,
|
|
c: Cccccccccccccccccc,
|
|
d: Dddddddddddddddd,
|
|
e: Eeeeeeeeeeeeeee
|
|
) {
|
|
bar();
|
|
}
|
|
|
|
fn foo(a: Aaaaaaaaaaaaaa, b: Bbbbbbbbbbbbbb) -> String {
|
|
foo();
|
|
}
|
|
|
|
fn bar(
|
|
a: Aaaaaaaaaaaaaa,
|
|
b: Bbbbbbbbbbbbbb,
|
|
c: Cccccccccccccccccc,
|
|
d: Dddddddddddddddd,
|
|
e: Eeeeeeeeeeeeeee
|
|
) -> String {
|
|
bar();
|
|
}
|
|
|
|
fn foo(a: u8 /* Comment 1 */, b: u8 /* Comment 2 */) -> u8 {
|
|
bar()
|
|
}
|
|
|
|
fn foo(
|
|
a: u8, // Comment 1
|
|
b: Bbbbbbbbbbbbbb,
|
|
c: Cccccccccccccccccc,
|
|
d: Dddddddddddddddd,
|
|
e: Eeeeeeeeeeeeeee // Comment 2
|
|
) -> u8 {
|
|
bar()
|
|
}
|
|
|
|
fn bar(
|
|
a: Aaaaaaaaaaaaaa,
|
|
b: Bbbbbbbbbbbbbb,
|
|
c: Cccccccccccccccccc,
|
|
d: Dddddddddddddddd,
|
|
e: Eeeeeeeeeeeeeee
|
|
) -> String
|
|
where X: Fooooo,
|
|
Y: Baaar
|
|
{
|
|
bar();
|
|
}
|
|
|
|
fn foo() -> T {
|
|
foo();
|
|
}
|
|
|
|
fn foo() -> T
|
|
where X: Foooo,
|
|
Y: Baaar
|
|
{
|
|
foo();
|
|
}
|
|
|
|
fn foo() where X: Foooo {}
|
|
|
|
fn foo()
|
|
where X: Foooo,
|
|
Y: Baaar
|
|
{
|
|
}
|
|
|
|
fn foo
|
|
()
|
|
-> (Loooooooooooooooooooooong, Reeeeeeeeeeeeeeeeeeeeeeeeturn, iiiiiiiiis, Looooooooooooooooong)
|
|
{
|
|
foo();
|
|
}
|
|
|
|
fn foo<g: G>() {
|
|
foo();
|
|
}
|
|
|
|
fn foo<L: Loooooooooooooooooooooong, G: Geeeeeeeeeeeneric, I: iiiiiiiiis, L: Looooooooooooooooong>
|
|
() {
|
|
foo();
|
|
}
|
|
|
|
fn foo<L: Loooooooooooooooooooong, G: Geeeeeeeeeeneric, I: iiiiiiiiis, L: Loooooooooooooooong>() {
|
|
foo();
|
|
}
|
|
|
|
trait Test {
|
|
fn foo(a: u8) {}
|
|
|
|
fn bar(
|
|
a: Aaaaaaaaaaaaaa,
|
|
b: Bbbbbbbbbbbbbb,
|
|
c: Cccccccccccccccccc,
|
|
d: Dddddddddddddddd,
|
|
e: Eeeeeeeeeeeeeee
|
|
) -> String {
|
|
}
|
|
}
|
|
|
|
fn foo<L: Loooooooooooooooooooong, G: Geeeeeeeeeeneric, I: iiiiiiiiis, L: Loooooooooooooooong>(
|
|
a: Aaaaaaaaaaaaaaaaaaaa,
|
|
b: Bbbbbbbbbbbbbbbbb,
|
|
c: Cccccccccccccccccc,
|
|
d: Dddddddddddddddd
|
|
) {
|
|
foo();
|
|
}
|
|
|
|
fn foo()
|
|
-> (Looooooooooooooooooooooooooong,
|
|
Reeeeeeeeeeeeeeeeeeeeeeeeeeeeeturn,
|
|
iiiiiiiiiiiiiis,
|
|
Loooooooooooooooooooooong)
|
|
{
|
|
foo();
|
|
}
|