]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/deriving-meta-empty-trait-list.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / deriving-meta-empty-trait-list.rs
index 955e02d4d2d896270d71dacd21a634049b26b715..5b55ef633353495021f941a21e57b5b3cb98979d 100644 (file)
@@ -1,6 +1,6 @@
-// xfail-pretty
+// ignore-pretty
 
-// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
+// Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
 // file at the top-level directory of this distribution and at
 // http://rust-lang.org/COPYRIGHT.
 //
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// xfail-fast
 
-#[deriving]   //~ WARNING empty trait list in `deriving`
+#[derive]   //~ WARNING empty trait list in `derive`
 struct Foo;
 
-#[deriving()] //~ WARNING empty trait list in `deriving`
+#[derive()] //~ WARNING empty trait list in `derive`
 struct Bar;
 
 pub fn main() {}