mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 17:24:06 +00:00
8 lines
179 B
Rust
8 lines
179 B
Rust
// Test that `download-rustc` doesn't put duplicate copies of libc in the sysroot.
|
|
//@ check-pass
|
|
#![crate_type = "lib"]
|
|
#![no_std]
|
|
#![feature(rustc_private)]
|
|
|
|
extern crate libc;
|