]> 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 ff086355f9db4fe0287d005f165d63b263f7d827..09d0f20c96d6c4d9eda35e3fdb22a6daf2780b4e 100644 (file)
@@ -8,17 +8,15 @@
 // 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!()
+silly_macro!();
 
 pub fn main() {}