]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/issue-9110.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / issue-9110.rs
index 60011281d425e48c2405f943596476258873d424..09d0f20c96d6c4d9eda35e3fdb22a6daf2780b4e 100644 (file)
@@ -8,16 +8,14 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-#![feature(macro_rules)]
-
-macro_rules! silly_macro(
+macro_rules! silly_macro {
     () => (
         pub mod Qux {
             pub struct Foo { x : u8 }
             pub fn bar(_foo : Foo) {}
         }
     );
-);
+}
 
 silly_macro!();