rust/tests/target/configs-fn_call_style-block.rs

18 lines
333 B
Rust
Raw Normal View History

// rustfmt-fn_call_style: Block
// Function call style
fn main() {
lorem(
"lorem",
"ipsum",
"dolor",
"sit",
"amet",
"consectetur",
"adipiscing",
"elit",
);
2017-05-04 08:17:57 +02:00
// #1501
let hyper = Arc::new(Client::with_connector(HttpsConnector::new(TlsClient::new())));
}