]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/list.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / list.rs
index 9b20398038d412f53e4123696a1a0a1b2fbfd5ee..e55c1b36f3e24b357c90ca70b82e6c0bafe8822c 100644 (file)
@@ -8,6 +8,8 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
+#![allow(unknown_features)]
+#![feature(box_syntax)]
 
 enum list { cons(int, Box<list>), nil, }