]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/unique-pat-3.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / unique-pat-3.rs
index 559d8f8cb3ca1ccd996eefab8dcaba9fbc8a261b..42a4b1a9c0cbfc5c11db1b5998e8f8955ce88dd0 100644 (file)
@@ -8,6 +8,9 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
+#![allow(unknown_features)]
+#![feature(box_syntax)]
+
 enum bar { u(Box<int>), w(int), }
 
 pub fn main() {