]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/smallest-hello-world.rs
Remove the in-tree `flate` crate
[rust.git] / src / test / run-pass / smallest-hello-world.rs
index b11970560d59a730583178b60bae51eb11d2bf62..a27d45ea17dc295f6917c1031167fe295f251d21 100644 (file)
 
 // pretty-expanded FIXME #23616
 
-#![feature(intrinsics, lang_items, start, no_core, libc)]
+#![feature(intrinsics, lang_items, start, no_core, alloc_system)]
 #![no_core]
 
-extern crate libc;
+extern crate alloc_system;
 
 extern { fn puts(s: *const u8); }
 extern "rust-intrinsic" { fn transmute<T, U>(t: T) -> U; }