]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/match-implicit-copy-unique.rs
fallout: run-pass tests that use box. (many could be ported to `Box::new` instead...
[rust.git] / src / test / run-pass / match-implicit-copy-unique.rs
index 0e7c959d58c333a969ef72a3ff1e44e5e0988844..6883187c402f3a3af8aa398e141cfd8fe03e1711 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)]
 
 struct Pair { a: Box<int>, b: Box<int> }