]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/associated-types-in-fn.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / associated-types-in-fn.rs
index 4ed213e85d8787fd484776fd3aa0d8f36cda62ea..4104f520a0c5d714827f33f6cd384c9aedfafa3e 100644 (file)
@@ -8,8 +8,6 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-#![feature(associated_types)]
-
 trait Get {
     type Value;
     fn get(&self) -> &<Self as Get>::Value;
@@ -36,4 +34,3 @@ fn main() {
     };
     assert_eq!(*grab(&s), 100);
 }
-