10 lines
226 B
Rust
10 lines
226 B
Rust
// rustfmt-fn_args_layout: Block
|
|
// rustfmt-fn_args_paren_newline: false
|
|
|
|
// #1624
|
|
pub unsafe fn some_long_function_name(
|
|
arg1: Type1,
|
|
arg2: Type2,
|
|
) -> (SomeLongTypeName, AnotherLongTypeName, AnotherLongTypeName) {
|
|
}
|