浏览代码

More CI fixes

Alex Crichton 7 年之前
父节点
当前提交
e423f3c64b
共有 1 个文件被更改,包括 3 次插入2 次删除
  1. 3 2
      examples/intrinsics.rs

+ 3 - 2
examples/intrinsics.rs

@@ -12,11 +12,12 @@
 #![feature(core_float)]
 #![feature(lang_items)]
 #![feature(start)]
-#![feature(i128_type)]
 #![feature(global_allocator)]
 #![feature(allocator_api)]
 #![cfg_attr(windows, feature(panic_unwind))]
-#![no_std]
+#![no_core]
+
+extern crate core;
 
 #[cfg(not(thumb))]
 extern crate alloc_system;