]> git.lizzy.rs Git - rust.git/blobdiff - example/alloc_example.rs
Pass all pairs to abi-checker
[rust.git] / example / alloc_example.rs
index 71e93e87b6c4135c4d180cedeac7be72f64fabe7..bc1594d82ecf9754908fdb5bcea6cc9c5602448e 100644 (file)
@@ -1,10 +1,10 @@
-#![feature(start, box_syntax, core_intrinsics, alloc_prelude, alloc_error_handler)]
+#![feature(start, core_intrinsics, alloc_error_handler, box_syntax)]
 #![no_std]
 
 extern crate alloc;
 extern crate alloc_system;
 
-use alloc::prelude::v1::*;
+use alloc::boxed::Box;
 
 use alloc_system::System;