]> git.proxmox.com Git - rustc.git/blobdiff - src/test/run-make/no-duplicate-libs/foo.rs
New upstream version 1.13.0+dfsg1
[rustc.git] / src / test / run-make / no-duplicate-libs / foo.rs
index ab8d2eca9363f55c52c9a53b166c79cff1e601bf..cbdee356838de80ae6d918793d1f8b429da757d9 100644 (file)
@@ -8,11 +8,12 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-#![feature(lang_items, libc)]
+#![feature(lang_items, libc, compiler_builtins_lib)]
 #![no_std]
 #![crate_type = "dylib"]
 
 extern crate libc;
+extern crate compiler_builtins;
 
 #[no_mangle]
 pub extern fn foo() {}