mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-31 09:04:18 +00:00
9 lines
238 B
Rust
9 lines
238 B
Rust
// Test that `download-rustc` doesn't put duplicate copies of libc in the sysroot.
|
|
//@ check-pass
|
|
//@ ignore-windows doesn't necessarily have the libc crate
|
|
#![crate_type = "lib"]
|
|
#![no_std]
|
|
#![feature(rustc_private)]
|
|
|
|
extern crate libc;
|