]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/borrowed-ptr-pattern-infallible.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / borrowed-ptr-pattern-infallible.rs
index b5600cd7db220286036a94caaebcb6f4da64cec2..55ae6d3bebf67e4910cdf838cd1553e9615909e1 100644 (file)
@@ -8,10 +8,9 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-#![feature(managed_boxes)]
 
 pub fn main() {
-    let (&x, &y) = (&3, &'a');
+    let (&x, &y) = (&3i, &'a');
     assert_eq!(x, 3);
     assert_eq!(y, 'a');
 }