]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/issue-12860.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / issue-12860.rs
index 3876aa45753c7f351082543f764ff623e60f946b..a05cc9c0f74c241a16f0331650fb57b1f34e7e0d 100644 (file)
@@ -8,13 +8,12 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// ignore-fast
 
 extern crate collections;
 
-use collections::HashSet;
+use std::collections::HashSet;
 
-#[deriving(Eq, TotalEq, Hash)]
+#[derive(Copy, PartialEq, Eq, Hash)]
 struct XYZ {
     x: int,
     y: int,