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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
420 B
Rust
Raw Normal View History

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