rust/tests/run-make/alloc-no-rc/rmake.rs

16 lines
416 B
Rust
Raw Normal View History

// This test checks that alloc can still compile successfully
2024-05-11 14:54:18 -05:00
// when the unstable no_rc feature is turned on.
2024-05-11 14:35:49 -05:00
// See https://github.com/rust-lang/rust/pull/84266
use run_make_support::{rustc, source_root};
2024-05-11 14:35:49 -05:00
fn main() {
rustc()
.edition("2021")
.arg("-Dwarnings")
.crate_type("rlib")
.input(source_root().join("library/alloc/src/lib.rs"))
2024-05-11 14:35:49 -05:00
.cfg("no_rc")
.run();
}