]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/associated-types-qualified-path-with-trait-with-type-parameters.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / associated-types-qualified-path-with-trait-with-type-parameters.rs
index 1b4eb2604a82bf4251ccfc5213b6af0c4ef04266..abbde16faefca14ffa4d81a441ad1cf9ba037c82 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 Foo<T> {
     type Bar;
     fn get_bar() -> <Self as Foo<T>>::Bar;