]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/needless_pass_by_value_proc_macro.rs
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / needless_pass_by_value_proc_macro.rs
index f8f279ccb66ebbf8eeadc77655a4124831aba25c..28f71d98fe7fb132013e7fea84cbc9a7a707354e 100644 (file)
@@ -7,9 +7,6 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-
-
-
 #![crate_type = "proc-macro"]
 #![warn(clippy::needless_pass_by_value)]
 
@@ -18,4 +15,6 @@
 use proc_macro::TokenStream;
 
 #[proc_macro_derive(Foo)]
-pub fn foo(_input: TokenStream) -> TokenStream { unimplemented!() }
+pub fn foo(_input: TokenStream) -> TokenStream {
+    unimplemented!()
+}